Skip to content

Instantly share code, notes, and snippets.

@Karlina-Bytes
Last active August 29, 2015 14:05
Show Gist options
  • Save Karlina-Bytes/c2d465176caccded6ef8 to your computer and use it in GitHub Desktop.
Save Karlina-Bytes/c2d465176caccded6ef8 to your computer and use it in GitHub Desktop.
HTML for a simple web page.
<!-- This is a comment -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Hello World </title>
</head>
<body>
<h1> This is a Large Heading </h1>
<h2> This is a Medium Heading </h2>
<h3> This is a Small Heading </h3>
<p> This is a paragraph </p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment