Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>HTML4</title>
- <meta charset="utf-8">
- </head>
- <body>
- <header>
- <p>Здравствуй, пользователь.</p>
- </header>
- <main>
- <div style="float:left;"><!--Что подразумевается под 'id="sidebar-left"'? -->
- <nav>
- <ul>
- <li><a href="/">Главная страница</a></li>
- <li><a href="/contact-us">Контакты</a></li>
- </ul>
- </nav>
- </div>
- <section>
- <p>Это главная страница с текстом.</p>
- </section>
- <div style="float:right;"><!--Что подразумевается под 'id="sidebar-right"'? -->
- <p>Войти на сайт:</p>
- <form action="/login" method="post">
- <label for="email">Введите ваш email:</label>
- <input type="text" name="email" id="email" value="[email protected]">
- <label for="password">Введите пароль:</label>
- <input type="password" name="password" id="password">
- <input type="submit" value="Войти">
- </form>
- </div>
- </main>
- <footer>
- <p>Сделано на HTML4</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment