-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (99 loc) · 4.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Coustard&family=Slabo+13px&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet " href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="script.js"></script>
<title>Weather Map</title>
</head>
<body>
<div class="container text-dark">
<div class="row">
<div class="bg-dark col col-lg-12" style="height:100px;padding-top: 20px">
<h1 class="text-center text-light" style="font-family: 'Coustard', serif;">Weather
Dashboard</h1>
</div>
</div>
<div class="row">
<div class="jumbotron col col-lg-4">
<h4 class="text-dark">Search for a City</h4>
<input id="searchCity" type="text" placeholder="Search" class="cityInput">
<button class="btn btn-primary fa fa-search Searchbtn"></button>
<table class="table">
<tbody id="showIt"></tbody>
</table>
</div>
<div class="col-lg-8" id="wrapper">
<table>
<!--<tr id="repeatTemp"></tr>
<tr id="forecast"></tr>-->
<div style="height: 400px; padding-left: 20px;">
<h2 id="displayWeather"></h2>
<!--<span>℉--></span><img id="iconDisplay" alt="">
<h4 id="temperature"></h4>
<h4 id="humid"></h4>
<h4 id="windspeed"></h4>
<h4 id="UVIndex"> </h4>
<br />
</div>
<h3 id="forecast">5 Day Forecast</h3>
<div class="forecastCont">
<div type="text" class="btn btn-primary btn-lg"
style="width: 125px; height:170px; padding-left :10px; margin-right:20px">
<div id="dateDisplay1"></div>
<p id="temp1"></p>
<img id="iconDisplay1"></img>
<p id="field1"></p>
<p id="humid1"></p>
</div>
<div type="text" class="btn btn-primary btn-lg"
style="width: 125px; height:170px; padding-left :10px; margin-right: 20px;">
<div id="dateDisplay2"></div>
<p id="temp2"></p>
<img id="iconDisplay2"></img>
<p id="field2"></p>
<p id="humid2"></p>
</div>
<div type="text" class="btn btn-primary btn-lg"
style="width: 125px; height:170px; padding-left :10px; margin-right: 20px;">
<div id="dateDisplay3"></div>
<p id="temp3"></p>
<img id="iconDisplay3"></img>
<p id="field3"></p>
<p id="humid3"></p>
</div>
<div type="text" class="btn btn-primary btn-lg"
style="width: 125px; height:170px; padding-left :10px; margin-right: 20px;">
<div id="dateDisplay4"></div>
<p id="temp4"></p>
<img id="iconDisplay4"></img>
<p id="field4"></p>
<p id="humid4"></p>
</div>
<div type="text" class="btn btn-primary btn-lg"
style="width: 125px; height:170px; padding-left :10px; margin-right: 0px;">
<div id="dateDisplay5"></div>
<p id="temp5"></p>
<img id="iconDisplay5"></img>
<p id="field5"></p>
<p id="humid5"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var searchFor = document.querySelector(".Searchbtn")
searchFor.addEventListener("click", submitForm);
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
</body>
</html>