Advertisement
Aikiro42

Untitled

Apr 6th, 2020
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.23 KB | None | 0 0
  1. <html>
  2.    
  3.     /*(4)-start*/
  4.     <head>
  5.         <style>
  6.  
  7.             body{
  8.                 background-image: url("image.jpg")
  9.                 /*(5)-In simple terms, a GIF has more data than a JPG.*/
  10.             }
  11.         </style>
  12.     </head>
  13.     /*(4)-end*/
  14.    
  15.     <body>
  16.    
  17.         <!--(3)-start-->
  18.         <img src="image.jpg" />
  19.         <!--(3)-end-->
  20.        
  21.         <!--(2)-start-->
  22.         <input type="text" name="sample_text" size="20">  <!--you can only type 20 characters in this input-->
  23.         <input type="password" name="sample_password">  <!--replaces the characters with * or a dot-->
  24.        
  25.         <!--radios of same group must have identical name-->
  26.         <!--when you select a radio button,
  27.         it deselects the currently selected radio button,
  28.         if there is any-->
  29.         <input type="radio" name="radio_group" value="1" checked"> <!--this radio button is checked-->
  30.         <input type="radio" name="radio_group" value="2">
  31.         <input type="radio" name="radio_group" value="3">
  32.         <input type="radio" name="radio_group" value="4">
  33.         <input type="checkbox" name="is_checkbox" checked> <!--this checkbox is already checked-->
  34.         <input type="button" id="submit_button"> <!--this is like a microphone, which does nothing until it's plugged in to a powered speaker (javascript)-->
  35.         <button type="button"></button>
  36.         <!--(2)-end-->
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement