-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcse.html
66 lines (64 loc) · 1.47 KB
/
cse.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<style>
h1{
text-align:center;
color:blue;
margin-top:5%
}
#x{
font-size: 20px;
margin :15px;
font-weight: bolder;
}
#f{
text-align:center;
font-size:18px;
color:red;
font-weight:bolder;
}
#i{
margin-left:30%;
font-size: 22px;
padding-left:20px;
padding-right:20px;
background-color:green;
color:white;
letter-spacing :5px;
margin-top:10px;
}
</style>
</head>
<body style=" background-color:rgb(180, 245, 245)">
<h1>Computer Science and Engineering</h1>
<br>
<table style="margin:auto">
<tr>
<td id="x" >Text Books</td>
<td>
<select id="x" >
<option id="x" value="select the book" selected>Select the book
<option id="x" value="C&Ds">C&Ds
<option id="x" value="Ads">Ads
<option id="x" value="Java">Java
<option id="x" value="Oracle">Oracle
<option id="x" value="Ms SQL Server">Ms SQL Server
<option id="x" value="MySql">MySql
</select>
</td></tr>
<tr>
<td id="x" >Quantity</td>
<td><input type="text" id="x" ></td>
</tr>
<tr>
<td></td>
<td>
<form method=post action="order.html">
<input id="i" type="submit" value=ok />
</form>
</td>
</tr>
</table>
<pre id="f"> NOTE:Cost of one book is "700" including shipping.</pre>
</body>
</html>