Created
March 12, 2021 23:27
-
-
Save cbscribe/cd1f884e28f6c6ee4575a9eec8fed031 to your computer and use it in GitHub Desktop.
HTML First Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>My First Page</title> | |
<style> | |
body { | |
font-family: Arial, Helvetica, sans-serif; | |
color: green; | |
background: #cfb87e; | |
} | |
p { | |
color: blue; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Section 1</h1> | |
<p>This is some text on my page.</p> | |
<p><a href="https://google.com/">Click here.</a></p> | |
<form action="https://google.com/search" method="GET"> | |
<input type="text" name="q"> | |
<input type="submit"> | |
</form> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment