SomeAmateur

CodeBlockr | HTML Tut 1 | Introduction

Nov 27th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <title>First Website</title>
  5. </head>
  6.  
  7. <body>
  8.  
  9. <!-- Headings -->
  10. <h1> Largest Heading </h1>
  11. <h2> Second Largest Heading </h2>
  12. <h3> Hello World! </h3>
  13. <h4> Sub Heading </h4>
  14. <h5> Another Sub Heading </h5>
  15. <h6> Smallest Heading </h6>
  16.  
  17. <!-- Horizontal Line -->
  18. <hr>
  19.  
  20. <!-- Paragraphs -->
  21. <p> This is a paragraph. </p>
  22. <p> This is another paragraph </p>
  23.  
  24. <!-- Horizontal Line -->
  25. <hr>
  26.  
  27. <!-- Line Breaks -->
  28. This is some text.
  29. <br><br><br><br><br>
  30. This is another piece of text.
  31.  
  32. <!-- Horizontal Line -->
  33. <hr>
  34.  
  35. </body>
  36.  
  37. </html>
Add Comment
Please, Sign In to add comment