Advertisement
MrsMcLead

tags

Jan 9th, 2014
675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.11 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Body Tags Sample Webpage
  5. </title>
  6. </head>
  7. <body>
  8.  
  9. <h1>
  10. Here is my heading. It's the largest one I can make by default.
  11. </h1>
  12.  
  13. <p>
  14. Now, I will write a paragraph. It doesn't really matter
  15. what it's about, but it's important to note
  16. that
  17. no
  18. matter
  19. how
  20. many lines I write my sample code on,
  21. html does not recognize "return".
  22. </p>
  23.  
  24. <h2>
  25. Here is a slightly smaller heading.
  26. </h2>
  27.  
  28. <p>
  29. And yet another paragraph. I think that I will make the word
  30. "paragraph" in bold.... here I go! <strong> paragraph </strong>.
  31. Please note that I can put my tags anywhere, in-line or
  32. on their own lines, whatever words they surround will be
  33. affected by them.</p><h6> A pretty small heading!</h6><p>
  34. I will be more neat with my tags in future lessons, but
  35. it is important to see how little html cares about space.</p>
  36.  
  37. <p>
  38. Shall we <em> italicize </em>?
  39. </p>
  40.  
  41. <p>
  42. Okay, finally, I want to go to a new line, but I don't want
  43. the space that the paragraph tag gives me, so I will use
  44. a break tag.
  45. </p>
  46. <p>
  47. Help!<br> I need somebody<br> Help!<br>Not just anybody<br>
  48. </p>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement