-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheee.html
66 lines (63 loc) · 1.55 KB
/
eee.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:rgb(186, 35, 216);
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;
margin-top:15px;
letter-spacing :5px;
}
</style>
</head>
<body style= "background-color:rgb(225, 233, 155)">
<h1 >Electrical and Electronics 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="Dc">Concepts in Electric Circuits
<option id="x" value="micro">Introduction to Electronic Engineering
<option id="x" value="analog">Electrical Power
<option id="x" value="processor">Microprocessor
<option id="x" value="VLSI">VLSI Design
</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" style="text-align:center">NOTE: Cost of one book is "700" including shipping.</pre>
</body>
</html>