| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <link rel="stylesheet" href="/public/main.css">
- </head>
- <body>
- <header>
- <section class="hedContain">
- <img class="img" src="/public/image02.jpg" alt="">
- <nav class="hedLinks">
- <a class="hedLink" href="#">Главная</a>
- <a class="hedLink" href="#">подать заявку</a>
- <a class="hedLink" href="#">регистрация</a>
- </nav>
- </section>
- </header>
- <main>
- <section class="slider">
- <img id="imgSlider" src="/public/image01.webp" alt="">
- </section>
- </main>
- <footer>
- <section>
- <a href="#">Link</a>
- <a href="#">Link</a>
- <a href="#">Link</a>
- </section>
- <section>
- <a href="#">Link</a>
- <a href="#">Link</a>
- <a href="#">Link</a>
- </section>
- <section>
- <a href="#">Link</a>
- <a href="#">Link</a>
- <a href="#">Link</a>
- </section>
- </footer>
- <script src="/public/page.js"></script>
- </body>
- </html>
|