Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Homework #1: Lists</title><!-- title (placed at the browser tab) -->
  7. </head>
  8. <body>
  9. <h1>My favourite food</h1> <!-- Prominent title inside <h1></h1> tags -->
  10. <h2>Ingredients</h2> <!-- Second level title -->
  11. <ul><!-- Unordered list (with bullet points) -->
  12. <li>1 banana</li>
  13. <li>1 piece of frozen spinach</li>
  14. <li>Fist of frozen forest fruits</li>
  15. <li>2 spoons of oat flakes</li>
  16. <li>1 tea spoon of honey</li>
  17. <li>Cup of yoghurt</li>
  18. </ul>
  19. <h2>Preparation</h2>
  20. <ol><!-- Ordered list (with numbers) -->
  21. <li>Put all ingredients into a blender</li>
  22. <li>Start the blender on the maximum speed</li>
  23. <ul><!-- nested unordered list -->
  24. <li>Blend it untill desired smoothness</li>
  25. </ul>
  26. <li>Serve it immediately in glass or cup</li>
  27. </ol>
  28. <p><em>Enjoy!</em></p>
  29.  
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement