shoppinglist.html 818 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Shopping List</title>
  6. <link rel="shortcut icon" href="/csh/favicon.ico" type="image/x-icon"/>
  7. <link rel="stylesheet" type="text/css" href="/csh/stylesheet.css"/>
  8. </head>
  9. <body>
  10. <header>
  11. <p><a href="/csh"><img src="/csh/homeicon" alt="csh"/></a></p>
  12. </header>
  13. <h1>Shopping List for September 29, 2017</h1>
  14. <ul>
  15. <li>sweet potatoes</li>
  16. <li>big bag frozen broccoli</li>
  17. <li>lemon juice</li>
  18. <li>lime juice</li>
  19. <li>Sriracha</li>
  20. <li>fennel seed</li>
  21. <li>whole wheat tortillas</li>
  22. </ul>
  23. <hr/>
  24. <footer>
  25. <p>Last updated: 2017-09-29 18:04:53 CDT.</p>
  26. <p>
  27. Copyright 2017 Caleb Herbert under the terms of the
  28. <a href="https://creativecommons.org/licenses/by/4.0/">Attribution
  29. 4.0 International</a> license.</p>
  30. </footer>
  31. </body>
  32. </html>