-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 885 Bytes
/
index.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
<body>
<div class="well well-lg">
<table class="table">
<thead>
<tr>
<th>Property</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Location</td>
<td id="city"></td>
</tr>
<tr>
<td>Weather</td>
<td id="weat"></td>
</tr>
<tr>
<td>Icon</td>
<td id="ico"></td>
</tr>
<tr>
<td>Temperature</td>
<td id="temp"></td>
</tr>
<tr id="clr-wind">
<td>Wind Speed</td>
<td id="windspd"></td>
</tr>
</tbody>
</table>
<button class= "btn btn-default" onclick="getLocation()">Current Weather</button>
<div class="btn-group">
<button type="button" class="btn btn-default" onclick="celsi()">Celsius</button>
<button type="button" class="btn btn-default" onclick="fahren()">Fahrenheit</button>
</div>
</div>
</body>