-
Notifications
You must be signed in to change notification settings - Fork 0
/
assignment12.html
25 lines (25 loc) · 1.23 KB
/
assignment12.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form>
<fieldset>
<legend style="text-align: center;"> Enter Your Details</legend>
Customer Name: <input type="text" name="customer"><br>
<input type="checkbox" name="item1" value="1000" name="HTML textbooks">HTML textbooks Rs. 1000<br>
<input type="checkbox" name="item2" value="2000" name="XML textbooks">XML textbook Rs. 2000<br>
<input type="checkbox" name="item3" value="2000" name="JavaBeans books"> JavaBeans books Rs. 2000<br>
<input type="checkbox" name="item4" value="1500" name="UML books"> UML books Rs. 1500"<br>
<input type="radio" name="payment" value="cash">Cash<br>
<input type="radio" name="payment" value="cheque">Cheque<br>
<input type="radio" name="payment" value="credit">Credit Card<br>
<input type="submit" value="Submit" style="background-color: blue; margin: 10px; padding: 10px; border-radius: 10px; color: aliceblue;" onclick="window.alert('purchase done')" >
</fieldset>
</form>
</body>
</html>