Computer Science, asked by udayhappy1, 6 months ago

Write the html program to design the following form which is below in the form of attachment? *

Attachments:

Answers

Answered by bharatsingh72
1

Answer:

CODE:-

<html>

 <head>

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>

     Ice Cream Order Form

   </title>

 </head>

 <body>

   <h1>Ice Cream Order Form</h1>

   <form action="orderplaced.html">

     Email: <input type="email">

     <br>

     Password: <input type="password">

     <br>

     Flavor: <input type="text">

     <br>

     Toppings:

     <input type="checkbox">Sprinkles

     <input type="checkbox">Nuts

     <input type="checkbox">Whipped Cream

     <br>

     Cup or cone?

     <input type="radio">Cup

     <input type="radio">Plain Cone

     <input type="radio">Sugar Cone

     <input type="radio">Waffle Cone

     <br>

     Special Request:

     <br>

     <input type="text">

     <br>

     <input type="submit" value="Submit Form"> <input type="reset" value="Reset Form">

   </form>

 </body>

</html>

Received order code:-

<html>

 <head>

   <title>Thank You !</title>

<style>

  body {

  text-align: center;

  text-decoration: none;

  font-family: Arial;

  }

</style>

 </head>

 <body>

   <h1>We have received your order and you will receive the delivery soon !</h1>

<a href="website.html" method="post"> Click here ! </a>

 </body>

</html>

Hope this helps ya :)

No SPAMMING❕❗...

Similar questions