-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmech.html
60 lines (60 loc) · 1.35 KB
/
mech.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
<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:40%;
font-size: 22px;
padding-left:20px;
padding-right:20px;
background-color:green;
color:white;
letter-spacing :5px;
}
</style>
</head>
<body style="background-color:rgb(247, 170, 108)">
<h1>Mechanical 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="Tm">Theory Of Machines
<option id="x" value="ar">Automation and Robotics
<option id="x" value="efm">Engineering Fluid Mechanics
</select>
</td></tr>
<tr>
<td id="x" >Quantity</td>
<td><input id="x" type="text" ></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>