index.html 686 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="stylesheet" href="style.css">
  8. <title>CSS Animation practise</title>
  9. </head>
  10. <body>
  11. <div class="square"> </div>
  12. <div class="wrapper">
  13. <div class="menu">
  14. <a href="#" class="menu-btn"></a>
  15. <nav class="menu-list">
  16. <a href="#"> Главная </a>
  17. <a href="#"> Новости </a>
  18. <a href="#"> Контакты </a>
  19. </nav>
  20. </div>
  21. </div>
  22. </body>
  23. </html>