index.html 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Root page</title>
  7. </head>
  8. <body>
  9. <section class="refs">
  10. <div class="refs__flex">
  11. <a href="1/index.html" rel="noopener noreferrer">First lection</a><br>
  12. <a href="2/index.html" rel="noopener noreferrer">Second lection</a><br>
  13. <a href="3/index.html" rel="noopener noreferrer">Third lection</a><br>
  14. <a href="flexbox-challenge-01/index.html" rel="noopener noreferrer">Flexbox challenge</a><br>
  15. <a href="practice/LGU_Pushkina_practice/index.html" rel="noopener noreferrer">Practice</a>
  16. </div>
  17. </section>
  18. </body>
  19. <style>
  20. .refs {
  21. padding: 10%;
  22. text-align: center;
  23. }
  24. .refs__flex {
  25. display: flex;
  26. flex-direction: column;
  27. font-size: 30px;
  28. }
  29. </style>
  30. </html>