Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <head>
  3.         <meta charset="UTF-8"/>
  4.         <title>Zadacha 20</title>
  5.     </head>
  6.     <body>
  7.         <div class="container">
  8.             <header>
  9.                 <h1>Zadacha 20</h1>
  10.             </header>
  11.             <div class="regForm">
  12.                 <form action="#">
  13.                     <p>
  14.                         <label for="username" class="uname"> Username: </label>
  15.                         <input id="username" name="username" type="text" placeholder="username"/>
  16.                     </p>                   
  17.                     <p>
  18.                         <label for="pwd" class="pwd"> Password: </label>
  19.                         <input id="pwd" name="pwd" type="text" placeholder="password"/>
  20.                     </p>
  21.                     <label for="radiobtn" class="rbtn">Radio buttons: </label>
  22.                     <br>
  23.                     <input type="radio" name="gender" value="male"> Male<br>
  24.                     <input type="radio" name="gender" value="female"> Female<br>
  25.                     <input type="radio" name="gender" value="other"> Other
  26.                    
  27.                     <p>
  28.                     <input type="submit" value="Login" />
  29.                     <input type="submit" value="Cancel" />
  30.                     </p>
  31.                 </form>
  32.             </div>
  33.         </div>
  34.     </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement