Advertisement
MrsMcLead

Lists

Jan 16th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Lists Webpage
  5. </title>
  6. </head>
  7. <body>
  8.  
  9. <h1> Lists </h1>
  10.  
  11. <p>
  12. Sometimes, I want to make a list. It can be an ordered list, like
  13. if I am ranking something, or an unordered list, something with
  14. bullets.
  15. </p>
  16. <h2>Ordered List </h2>
  17. <p>
  18. Here are my choices for who Bella should have ended up with,
  19. in order from my favorite pick to my least favorite pick:
  20. <ol>
  21. <li> Mike
  22. <li> Jacob
  23. <li> Edward
  24. </ol>
  25. </p>
  26.  
  27. <p> Obviously, the above requires some explanation, so I am
  28. going to make a nested ordered list (one list inside another).
  29. </p>
  30. <ol>
  31. <li> Mike
  32.     <ol>
  33.     <li> human
  34.     <li> human
  35.     <li> I don't really know how good he is for Bella, but
  36.     he is human
  37.     </ol>
  38. <li> Jacob
  39.     <ol>
  40.     <li> loyal
  41.     <li> not a vampire
  42.     <li> I don't think Bella should be with someone who is
  43.     destined for someone else, but still, werewolf is better
  44.     than vampire.
  45.     </ol>
  46. <li> Edward
  47.     <ol>
  48.     <li> dead
  49.     <li> looks sick, always
  50.     <li> cold
  51.     </ol>
  52.     </li>
  53.  
  54.    
  55.  
  56.  
  57. <h2> Underlining </h2>
  58.  
  59. <p>
  60. We <u>underline </u> with the "u" tag.
  61. </p>
  62.  
  63. <h2> Text Alignment Examples </h2>
  64.  
  65. <p>
  66. If I want to align a paragraph, I can put it right in the
  67. paragraph align tag!
  68. </p>
  69.  
  70. <p align = left>
  71. This paragraph is left-aligned.
  72. </p align = left>
  73.  
  74. <p align = right>
  75. This paragraph is right-aligned.
  76. </p align = right>
  77.  
  78. <p align = center>
  79. This paragraph is centered.
  80. </p align = center>
  81.  
  82. <h2> Blockquote </h2>
  83.  
  84. <p>
  85. Now, I would like to indent a paragraph!
  86. <blockquote>
  87. One, two, buckle my shoe.<br>
  88. Three, four, knock on the door. <br>
  89. Five, six, pick up sticks.<br>
  90. Seven, eight, lay them straight.<br>
  91. Nine, ten, let's do it again!<br>
  92. </blockquote>
  93. The above is one of my children's favorite songs!
  94. </p>
  95.  
  96. <h2> Horizontal Lines </h2>
  97.  
  98. <p>
  99. Here is a horizontal line:
  100. <hr>
  101. <br>
  102. We can make it thicker:
  103. <hr size = 10>
  104. <br>
  105. Or take up a certain percent of the screen:
  106. <hr width = 25% >
  107. <br>
  108. Or both!
  109. <hr size = 5 width = 75%>
  110. </p>
  111.  
  112. </body>
  113. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement