Computer Science, asked by Answer00, 10 months ago

please tell the HTML code for the following I'll give brainliest​

Attachments:

Answers

Answered by amoghbansal27
16

Answer:

<HTML>

<body>

<form>

<h1> Pizza shop 2.0</h1>

name:

<input type= "text" size = "20" name = "urname" >

<br>

Pizza topping

<input type = "radio" value = "r1" name = "supreme"> Supreme

<input type = "radio" value = "r1" name = "Vegeterian"> Vegeterian

<input type = "radio" value = "r1" name = "Hawaiian"> Hawaiian

<br>

Pizza sauce

<select menu size = 1>

<option value = Tomato SELECTED>

</select>

<br>

optional extras:

<input type = "checkbox" value = "c1" name = "Extra Cheese"> Extra Cheese

<input type = "checkbox" value = "c2" name = "Gluten Free Base"> Gluten Free Base

<br>

Delivery Instructions:

<br>

<textarea rows = "20" cols = "5">

<textarea>

<input type = "Submit" value = "Send my Order">

</form>

</body>

</html>

took a lot of time hope it helps plz mark as brainliest

Explanation:

Answered by nanethanafham07
11

Answer:

Explanation:

<html>

<body>

<form method="post" action="mailto:[email protected]">

<Table border="1">

<tr>

<td colspan="2" align="center"> Pizza shop 2.0</td>

</tr>

<tr>

<td>Name:</td>

<td><input type= "text" size = "20" Name = "name" ></td>

</tr>

<tr>

<td>Pizza topping</td>

<td>

<input type="radio" name="topping" value="supreme">Supreme</input>

<br><input type="radio" name="topping" value="vegetarian">Vegetarian</input>

<br><input type="radio" name="topping" value="hawaiian">Hawaiian</input>

</td>

</tr>

<tr>

<td>Pizza sauce</td>

<td><select menu size = 1>

<option value = "Tomato" selected>Tomato</option>

<option value="Mustard">Mustard</option>

</select>

</td>

</tr>

<tr>

<td>Optional extras:</td>

<td><input type = "checkbox" value = "c1" name = "Extra Cheese"> Extra Cheese

<input type = "checkbox" value = "c2" name = "Gluten Free Base"> Gluten Free Base

</td>

</tr>

<tr>

<td colspan="2">

Delivery Instructions:

<br>

<textarea rows = "5" cols = "50">

</textarea><br>

<input type = "Submit" value = "Send my Order"></td>

</tr>

</table>

</form>

</body>

</html>

Similar questions