Advertisement
Jaysds1

HTML Basic Tags

May 28th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.39 KB | None | 0 0
  1. <!-- Heading Tags -->
  2. <h1>This is heading 1</h1>
  3. <h2>This is heading 2</h2>
  4. <h3>This is heading 3</h3>
  5. <h4>This is heading 4</h4>
  6. <h5>This is heading 5</h5>
  7. <h6>This is heading 6</h6>
  8.  
  9. <!-- Paragraph Tag -->
  10. <p>This is a Paragraph Tag</p>
  11.  
  12. <!-- Link Tag -->
  13. <a href="http://www.w3schools.com">This is a link</a>
  14.  
  15. <!--Image Tag -->
  16. <img src="w3schools.jpg" width="104" height="142" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement