Last active
August 29, 2015 14:05
-
-
Save Karlina-Bytes/c2d465176caccded6ef8 to your computer and use it in GitHub Desktop.
HTML for a simple web page.
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
<!-- 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