Advertisement
stoyanmkd

Forms - Glymfs HTML

Mar 6th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Form</title>
  5.         <meta charset="utf-8">
  6.         <link rel="stylesheet" type="text/css" href="Exam_29_10_p03.css">
  7.     </head>
  8.     <body>
  9.         <main>
  10.             <header>
  11.                 <h1>All you need in one roof.SoftUni's Pattern Design</h1>
  12.             </header>
  13.             <section id="left">
  14.                 <article id="fire">
  15.                 </article>
  16.                 <article>
  17.                     <ul>
  18.                         <li>Fast reload</li>
  19.                         <li>Perfect design</li>
  20.                         <li>SoftUni shortcuts</li>
  21.                     </ul>
  22.                 </article>
  23.             </section>
  24.             <section id="right">
  25.                 <header>
  26.                     <h3>Login to continue</h3>              
  27.                 </header>
  28.                 <form action="" method="post">
  29.                     <label for="username"></label><input type="text" id="username" placeholder="User name"/>
  30.                     <label for="country"></label><input type="text" id="country" placeholder="Country"/>
  31.                     <input type="submit"/>
  32.                 </form>
  33.             </section>
  34.         </main>
  35.     </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement