-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmotor.html
More file actions
71 lines (68 loc) · 3.18 KB
/
motor.html
File metadata and controls
71 lines (68 loc) · 3.18 KB
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
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MOTOR CONTROL</title>
<link rel="stylesheet" type="text/css" href="Newfolder/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="./style_motor.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="Newfolder/flexslider.css">
<link rel="stylesheet" type="text/css" href="Newfolder/lightbox.css">
</head>
<body>
<div class="banner">
<header>
<div class="nav1">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=" #navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav m-auto">
<li class="nav-item">
<a class="nav-link" href="./home.html"><strong>HOME</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><strong>MOTOR CONTROL</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./data.html"><strong>DATA</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./graph.html"><strong>GRAPH</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./Contact.html"><strong>CONTACT US</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./feedback.html"><strong>FEEDBACK</strong></a>
</li>
</ul>
</div>
</nav>
</div>
</header>
</div>
<form>
<label><h1>CROP:<h1></label>
<select id="crop">
<option>Rice</option>
<option>Wheat</option>
<option>Barley</option>
<option>Oat</option>
<option>Rye</option>
</select>
</form>
<button id="submit">Submit</button>
<h1>Conditions required:</h1>
<table>
<thead>
<tr>
<th>Crop</th>
<th>Temperature</th>
<th></th>
</tr>
</thead>
<tbody id="bod">
</tbody>
</table>
</body>
</html>