web.html 974 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Lee Morgan</title>
  6. <link rel="stylesheet" href="/learn/style">
  7. </head>
  8. <body>
  9. <h1>Introduction to Web Programming</h1>
  10. <div class="cardContainer">
  11. <a class="card" href="/learn/web/001">
  12. <img src="/images/web" alt="World Wide Web">
  13. <div>
  14. <h3>How the Web Works</h3>
  15. <p>A brief description of what the web is and what happens when you visit a web page.</p>
  16. </div>
  17. </a>
  18. <a class="card" href="/learn/web/002">
  19. <img src="/images/web" alt="World Wide Web">
  20. <div>
  21. <h3>Workplace Setup</h3>
  22. <p>A few tools that are used for programming and some instructions to install and set them up.</p>
  23. </div>
  24. </a>
  25. </div>
  26. </body>
  27. </html>