Advertisement
MrsMcLead

fancyTags

Jan 9th, 2014
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.20 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Body Tags Fancy Webpage
  5. </title>
  6. </head>
  7. <body>
  8. <!--Here is a comment! You can only access it by viewing the html.
  9. It won't show up on the webpage. -->
  10. <h1> Fancy Tags </h1>
  11.  
  12. <h2> Underlining </h2>
  13.  
  14. <p>
  15. We <u>underline </u> with the "u" tag.
  16. </p>
  17.  
  18. <h2> Text Alignment Examples </h2>
  19.  
  20. <p>
  21. If I want to align a paragraph, I can put it right in the
  22. paragraph align tag!
  23. </p>
  24.  
  25. <p align = left>
  26. This paragraph is left-aligned.
  27. </p align = left>
  28.  
  29. <p align = right>
  30. This paragraph is right-aligned.
  31. </p align = right>
  32.  
  33. <p align = center>
  34. This paragraph is centered.
  35. </p align = center>
  36.  
  37. <h2> Blockquote </h2>
  38.  
  39. <p>
  40. Now, I would like to indent a paragraph!
  41. <blockquote>
  42. One, two, buckle my shoe.<br>
  43. Three, four, knock on the door. <br>
  44. Five, six, pick up sticks.<br>
  45. Seven, eight, lay them straight.<br>
  46. Nine, ten, let's do it again!<br>
  47. </blockquote>
  48. The above is one of my children's favorite songs!
  49. </p>
  50.  
  51. <h2> Horizontal Lines </h2>
  52.  
  53. <p>
  54. Here is a horizontal line:
  55. <hr>
  56. <br>
  57. We can make it thicker:
  58. <hr size = 10>
  59. <br>
  60. Or take up a certain percent of the screen:
  61. <hr width = 25% >
  62. <br>
  63. Or both!
  64. <hr size = 5 width = 75%>
  65. </p>
  66.  
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement