-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 2.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- <script src='config.js' type='module' ></script> -->
<script type="module"src = "index.js" defer ></script>
<link rel="stylesheet" href= "style.css">
</head>
<body>
<div id ="temp" >
<p id = "tempDisplay"></p>
<button id = "celFar" value = "f" onclick ='celFar()' ></button>
</div>
<div id = "content">
<div id = "generalWeather">
<div id= "timeDate">
<div id = "time"> </div>
<div id = "date"></div>
</div>
</div>
<div id = "specificWeather">
<div id = "menu">
<button id ="dailyButton" onclick ='dailyForecast () '>Daily</button>
<button id ="hourlyButton" onclick='hourlyForecast()' >Hourly</button>
<div id = "hourlyButtons">
<button id="firstTab" onclick = 'openTab("tab1")'></button>
<button id="secondTab" onclick = 'openTab("tab2")'></button>
<button id="thirdTab" onclick = 'openTab("tab3")'></button>
</div>
</div>
<div id = "dailyHourly">
<div id = "daily">
<div id = "day"></div>
<div id = "day"></div>
<div id = "day"></div>
<div id = "day"></div>
<div id = "day"></div>
<div id = "day"></div>
<div id = "day"></div>
</div>
<div id = "hourly">
<div id = "tabs">
<div id = "tab1"></div>
<div id = "tab2"></div>
<div id = "tab3"></div>
</div>
</div>
</div>
</div>
<div id = "weekWeather">
<div id = "location">
<div id = "currentCity"></div>
<form id = "chooseLocation" onsubmit="return false">
<input type = "text" id = "city"placeholder="Where are you?" value = "">
<button id = "submit" onclick='getWeather()' ><img src = "images/search.png" id = "search"></button>
</form>
</div>
</div>
</div>
</body>
</html>