-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChartsPage.html
75 lines (57 loc) · 2.21 KB
/
ChartsPage.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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Charts Page</title>
<link rel = "stylesheet" type = "text/css" href = "CSS/ChartsPageCSS.css">
<!-- Foundation imports: -->
<link rel='stylesheet' type='text/css' href="Foundation/css/foundation.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:200" rel="stylesheet">
<!-- Insert this within your head tag and after foundation.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/motion-ui/1.1.1/motion-ui.min.css" />
<script src="Scripts/javascript.js"></script>
</head>
<body>
<table>
<tr>
<th><form><input type="text" name="search" placeholder="mm/dd/yy"></form></th>
<th><p>to</p></th>
<th><form><input type="text1" name="search" placeholder="mm/dd/yy"></form></th>
<th><button class="button" class=“active”>Linechart</button></th>
<th><button class="button" class=“active”>Bar Graph</button></th>
<th><button class="button" class=“active”>Data Table</button></th>
</tr>
<tr>
<th valign="top"><div class="dropdown">
<button class="dropbtn">Example Charts</button>
<div class="dropdown-content"><center>
<a href="#">Linear</a>
<a href="#">Quadratic</a>
<a href="#">Exponential</a>
<a href="#">Sinusoidal</a>
</center></div>
</div></th>
<th valign="top"><div class="dropdown">
<button class="dropbtn">Categories</button>
<div class="dropdown-content"><center>
<a href="#">Environment Duration</a>
<a href="#">Outside Temperature</a>
<a href="#">Wind Chill</a>
<a href="#">Heat Index</a>
<a href="#">Dew Point</a>
<a href="#">Humidity</a>
<a href="#">Wind Speed</a>
<a href="#"> Rain Rate</a>
<a href="#">Barometer</a>
<a href="#">Solar Radiance</a>
<a href="#">Green Roof Temperature</a>
<a href="#">White Roof Temperature</a>
</center></div>
</div></th>
<th valign="top"><button class="dropbtn">Submit</button><br></th>
<th valign="top"><button class="button" class=“active”>Maximum</button><br></th>
<th valign="top"><button class="button" class=“active”>Average</button><br></th>
<th valign="top"><button class="button" class=“active”>Minimum</button><br></th>
</tr>
</table>
</body>
</html>