Advertisement
wadkat

HTML basic

Jul 2nd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.89 KB | None | 0 0
  1. <html>
  2. <head>
  3. <b>HEAD</b><br/>
  4. details about site<br/>
  5. <title>title here</title>
  6. keywords<br/>
  7. summary<br/>
  8. copyright<br/>
  9. owner<br/>
  10. etc<br/>
  11. <br/>
  12.  
  13. </head>
  14.  
  15. <body>
  16. <b>BODY</b><br/>
  17. text<br/>
  18. images<br/>
  19. tables<br/>
  20. forms<br/>
  21. etc<br/>
  22.  
  23. <b>Paragraph:</b>
  24. <p>Here is a paragraph<br/>
  25. Here is another line<br/>
  26. no more</p>
  27. Horizontal line:<br/>
  28. <hr/>
  29. <!--comments like this-->
  30. <u>underlined</u><br/>
  31. <b>bold</b><br/>
  32. <i>italic</i>
  33. <center>center</center><br/>
  34. <span style="color:red">span <br/></span>
  35.  
  36. <h1 style ="color:#808000">heading 1</h1>
  37. <h2 style ="color:#080080; text-align:center">heading 2</h2>
  38. <h3>heading 3</h3>
  39. <h4>heading 4</h4>
  40. </hr>
  41. <blockquote>
  42. this is a blockquote
  43. </blockquote>
  44.  
  45. this is a <sup>superscript</sup></br/>
  46. this <sup>is</sup> also a superscript<br/>
  47. <footer>
  48. <address>
  49. This is address
  50. </address>
  51. </footer>
  52. </body>
  53.  
  54.  
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement