sofiiiaaapiust

Untitled

Feb 9th, 2023
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>My Favorite Quotes</title>
  4. </head>
  5. <body>
  6. <!-- 1. Add a heading based on the title given in the head-->
  7. <h1>My Favorite Quotes</h1>
  8.  
  9. <!-- 2. Add your favorite quote as a block below wrapping the entire thing in an apt
  10. tag along with the author's name -->
  11. <blockquote>
  12. "The only way to do great work is to love what you do."
  13. <footer>Steve Jobs</footer>
  14. </blockquote>
  15.  
  16. <!--3. Wrap in an abbr tag the content in the paragraph you deem appropriate -->
  17. <p>Here is some of <abbr title="HyperText Markup Language">HTML</abbr> code for you to wrack your brain at</p>
  18.  
  19. <!-- 4. Add a pre tag around the code tag-->
  20. <pre>
  21. <code>
  22. &lt;html&gt;
  23. &lt;head&gt;
  24. &lt;title&gt;My Website&lt;/title&gt;
  25. &lt;/head&gt;
  26. &lt;body&gt;
  27. Hello, world!
  28. &lt;/body&gt;
  29. &lt;/html&gt;
  30. </code>
  31. </pre>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment