1.write A Program To Design A Form For Placing Pizza Order
1.write A Program To Design A Form For Placing Pizza Order
<html>
<body>
<h1 style="color:slateblue;">Pizza Order Form </h1>
<form>
<label><b>Sauces</b></label><br>
<input type="radio" name="sauce" value="1">Pizza Sauce
<input type="radio" name="sauce" value="2">BBQ Sauce
<input type="radio" name="sauce" value="3">Garlic
Sauce<br><br>
</form>
</body>
</html>
Practical 6
<html>
<head>
<title> Registration Page </title>
</head>
<body style="background-color:rgb(80, 238, 243)">
<form>
<label> Firstname </label>
<input type="text" name="firstname" size="15"/>
<br> <br>
<label> Middlename: </label>
<input type="text" name="middlename" size="15"/>
<br> <br>
<label> Lastname: </label>
<input type="text" name="lastname" size="15"/>
<br> <br>
Practical 6
<label>Course : </label>
<select>
<option value="Course">Course</option>
<option value="Computer">Computer</option>
<option value="Mechanical">Mechanical</option>
<option value="Electrical">Electrical</option>
<option value="Electronics and
Communication">Electronics and
Communication</option>
</select>
<br> <br>
Address : <br>
<textarea cols="80" rows="5" value="address">
</textarea> <br> <br>
Email:
<input type="email" id="email" name="email"/>
<br> <br>
Password:
<input type="Password" id="pass" name="pass">
<br> <br>
Re-type password:
<input type="Password" id="repass" name="repass">
<br> <br>
<input type="button" value="Submit"/>
</form>
</body>
</html>
Practical 6
<html>
<body style="background-color: aquamarine;">
<script>
function click_event()
{
document.write("<b>THANK YOU</b>")
}
</script>
<form>
Practical 6