Guest User

Deliverable1

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6. </head>
  7. <body>
  8.     <form name="email_form"
  9.     action="subscribe.php"
  10.     method="get">
  11.     <p>
  12.         Please enter your e-mail adderss to subscribe to our newsletter
  13.     </p>
  14.     <p>
  15.         Email: <input type="text" name="e-mail" placeholder="@helloworld">
  16.     </p>
  17.     <p>
  18.         <input type="submit" name="submit" value="Subscribe">
  19.     </p>
  20.     <button type="submit">
  21.         <input type="button" value="Alert Me" name="message">
  22.         <input type="submit" value="Checkout" name="checkout">
  23.         <input type="reset" value="Reset" name="resetform">
  24.         <p><input type="image" src="cena.jpg" alt="" width="50%" height="50%"></p>
  25.         <p>Some text that is included in the button</p>
  26.  
  27.         <img src="fish.jpg" alt="" width="50%">
  28.  
  29.         </button>
  30.     <br>
  31.     <br>
  32.     <br>
  33.     Quantity: <input type="text" name="quantity" value="1" size="5" readonly>
  34.     <br><br>
  35.     Username: <input type="text" name="Username" autofocus placeholder="Enter your username">
  36.     <br><br>
  37.     Password: <input type="password" name="password" maxlength="6" placeholder="Enter your password">
  38.     <br><br>
  39.     Hidden: <input type="hidden" name="productid" value="widget">
  40.     <br><br>
  41.     Crust:
  42.     <br>
  43.     <input type="radio" name="crust" value="thin"> Thin Crust
  44.     <br>
  45.     <input type="radio" name="crust" value="deep"> Deep Dish
  46.     <br>
  47.     <input type="radio" name="crust" value="hand"> Hand
  48.     <br>
  49.     <br>
  50.     <br>
  51.     Toppings:
  52.     <br>
  53.     <input type="checkbox" name="topping1" value="pepperoni">
  54.     Pepperoni:
  55.     <br>
  56.     <input type="checkbox" name="topping2" value="mushrooms">
  57.     Mushrooms
  58.     <br>
  59.     <input type="checkbox" name="topping3" value="olives">
  60.     Olives
  61.     <br>
  62.     <br>
  63.     Style:
  64.     <select name="style_and_size">
  65.     <optgroup label="The New Yorker">
  66.         <option value="ny10">The New Yorker 10''</option>
  67.         <option value="ny12">The New Yorker 12''</option>
  68.         <option value="ny16">The New Yorker 16''</option>
  69.     </optgroup>
  70.     <optgroup label="The Chicago">
  71.         <option value="chi10">The Chicago 10''</option>
  72.         <option value="chi2">The Chicago 12''</option>
  73.         <option value="chi16">The Chicago 16''</option>
  74.     </optgroup>
  75.     </select>
  76.     <br>
  77.     <br>
  78.     <select name="toppings" id="" size="4" multiple="">
  79.         <option value="pepperoni">Pepperonni</option>
  80.         <option value="sausage">Sausage</option>
  81.         <option value="mushrooms">Mushroom</option>
  82.         <option value="olives">Black Olives</option>
  83.         <option value="onion">Onions</option>
  84.         <option value="bacon">Canadian Bacon</option>
  85.         <option value="pineapple">Pineapple</option>
  86.     </select>
  87.     <br>
  88.     <br>
  89.     Comments
  90.     <br>
  91.     <textarea
  92.               name="comments"
  93.               placeholder="If you have comments. Please enter them here."
  94.               cols="30"
  95.               rows="20">
  96.        
  97.     </textarea>
  98.  
  99.  
  100. </form>
  101. </body>
  102. </html>
Add Comment
Please, Sign In to add comment