Skip to content

Instantly share code, notes, and snippets.

@anaszen777
Created August 11, 2013 07:11
Show Gist options
  • Save anaszen777/6203829 to your computer and use it in GitHub Desktop.
Save anaszen777/6203829 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>This is written using the heading 1 tag.</h1>
<h2>This is written using the heading 2 tag.</h2>
<h3>This is written using the heading 3 tag.</h3>
<h4>This is written using the heading 4 tag.</h4>
<h5>This is written using the heading 5 tag.</h5>
<h6>This is written using the heading 6 tag.</h6>
<br>
<p>Before this br tag is used for line break and this paragraph is written using the paragraph tag.</p>
<hr>This horizontal line is create using the hr tag.
<i><b><p>In this bold and italic tag is used</b></i></p>
<!-- This tag will not be displayed on webpage -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment