Advertisement
Guest User

Inden.html

a guest
Aug 7th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title> Web Design </title>
  4.     </head>
  5.     <body>
  6.         <div>
  7.             This is Div
  8.         </div>
  9.         <div>
  10.             <h1>This is Heading<h1>
  11.             <h2>This is Heading<h2>
  12.             <h3>This is Heading<h3>
  13.             <h4>This is Heading<h4>
  14.             <h5>This is Heading<h5>
  15.             <h6>This is Heading<h6>
  16.         </div>
  17.         Form:
  18.         <form>
  19.             <label>UserName:</label><br/>
  20.             <input type="text" name="username" value="name"><br/>
  21.             Password:<br/>
  22.             <input type="password" name="password" value="password"><br/>
  23.             Email:<br/>
  24.             <input type="email" name="email"><br/><br/>
  25.             Gender:<br/>
  26.             <input type="radio" name="gender" value="male"> Male<br>
  27.             <input type="radio" name="gender" value="female"> Female<br>
  28.             <input type="radio" name="gender" value="other"> Other<br/>
  29.             Chake box:<br/>
  30.             <input type="checkbox" name="vehicle1" value="Bike"> I have a bike<br>
  31.             <input type="submit" value="Submit">
  32.             <input type="reset">
  33.         </form>
  34.     </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement