Advertisement
bappi2097

index.html

Sep 17th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <!DOCTYPE HTML5>
  2. <html>
  3.     <head>
  4.         <title>First</title>
  5.         <link rel="stylesheet"  href="style.css"/>
  6.     </head>
  7.     <body class="body_class">
  8.         <!--This is Header-->
  9.         <h1 >This is H1</h1>
  10.         <h2 >This is H2</h2>
  11.         <h3 >This is H3</h3>
  12.         <h4 >This is H4</h4>
  13.         <h5 >This is H5</h5>
  14.         <h6 >This is H6</h6>
  15.        
  16.         <p class="p_class" id="p_id" style="font-size:50px;">This is a Paragraph</p>
  17.        
  18.         <!--<marquee direction="right"><img class="c_img" src="Screenshot (1).png"></marquee>-->
  19.        
  20.         <form action="" method="">
  21.             <label>Name:</label><input type="text" placeholder="Enter Your Name"/>
  22.             </br>
  23.             <label>Email:</label><input type="email" placeholder="Enter Your Email"/>
  24.             </br>
  25.             <label>Password:</label><input type="password" placeholder="Enter Your Password"/>
  26.             </br>
  27.            
  28.             <label>Male</label><input type="radio" name="gender"/>
  29.             </br>
  30.             <label>Female</label><input type="radio" name="gender"/>
  31.             </br>
  32.            
  33.             <input type="checkbox" />
  34.             <label>0-15</label>
  35.             </br>
  36.             <input type="checkbox" />
  37.             <label>16-21</label>
  38.             </br>
  39.             <input type="checkbox" />
  40.             <label>21+</label>
  41.             </br>
  42.            
  43.             <label>Program</label>
  44.             <select>
  45.                 <option>B.Sc</option>
  46.                 <option>M.Sc</option>
  47.             </select>
  48.             </br>
  49.             <button type="button">Save</button>
  50.         </form>
  51.     </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement