BossArturKA

Untitled

Apr 29th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.17 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <title>HTML4</title>
  5.         <meta charset="utf-8">
  6.     </head>
  7.     <body>
  8.         <header>
  9.             <p>Здравствуй, пользователь.</p>
  10.         </header>
  11.         <main>
  12.             <div style="float:left;"><!--Что подразумевается под 'id="sidebar-left"'? -->
  13.                 <nav>
  14.                     <ul>
  15.                         <li><a href="/">Главная страница</a></li>
  16.                         <li><a href="/contact-us">Контакты</a></li>
  17.                     </ul>
  18.                 </nav>
  19.             </div>
  20.             <section>
  21.                 <p>Это главная страница с текстом.</p>
  22.             </section>
  23.             <div style="float:right;"><!--Что подразумевается под 'id="sidebar-right"'? -->
  24.                 <p>Войти на сайт:</p>
  25.                 <form action="/login" method="post">
  26.                     <label for="email">Введите ваш email:</label>
  27.                     <input type="text" name="email" id="email" value="[email protected]">
  28.                     <label for="password">Введите пароль:</label>
  29.                     <input type="password" name="password" id="password">
  30.                     <input type="submit" value="Войти">
  31.                 </form>
  32.             </div>
  33.         </main>
  34.         <footer>
  35.             <p>Сделано на HTML4</p>
  36.         </footer>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment