Advertisement
Guest User

Untitled

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