Skip to content

Instantly share code, notes, and snippets.

@cbscribe
Created March 12, 2021 23:27
Show Gist options
  • Save cbscribe/cd1f884e28f6c6ee4575a9eec8fed031 to your computer and use it in GitHub Desktop.
Save cbscribe/cd1f884e28f6c6ee4575a9eec8fed031 to your computer and use it in GitHub Desktop.
HTML First Example
<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