-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (80 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="./Assets/style.css">
<title>Weather Man</title>
</head>
<body>
<h1 class="header">Weather DashBoard</h1>
<main class="row">
<!-- <main class="row"> -->
<!-- City Search bar with history -->
<aside class="citySearch col-4">
<h2>Search for a City:</h2>
<div class="input-group input-group-lg">
<input type="text" class="form-control col-8" placeholder="City Goes Here!">
<div class="input-group-append">
<button class="btn btn-primary city-search" type="button" id="Search"><i
class="fas fa-search"></i></button>
</div>
</div>
<!-- City History -->
<div id="cities">
<!-- skele for reference -->
<!-- <div class="city">Austin</div>
<div class="city">Justin</div> -->
</div>
</aside>
<!-- Content showing stats -->
<content class="col-sm">
<section class="stats">
<h3>Search Your City!</h3>
<p id="Temp">Temperature:</p>
<p id="humid">Humidty:</p>
<p id="wind">Wind Speed:</p>
<p>UV Index: <span id="uvi"></span></p>
</section>
<!-- stats of 5 day forecast -->
<section>
<h4>5-Day Forecast:</h4>
<div class="row" id="five-day">
<!-- skeleton for reference -->
<!-- <figure class="daily-weather col-auto">
<h5>8/16/2020</h5>
<p>Temp: 86.84</p>
<p>Humidity: 43%</p>
</figure>
<figure class="daily-weather col-auto">
<h5>8/16/2020</h5>
<p>Temp: 86.84</p>
<p>Humidity: 43%</p>
</figure>
<figure class="daily-weather col-auto">
<h5>8/16/2020</h5>
<p>Temp: 86.84</p>
<p>Humidity: 43%</p>
</figure>
<figure class="daily-weather col-auto">
<h5>8/16/2020</h5>
<p>Temp: 86.84</p>
<p>Humidity: 43%</p>
</figure>
<figure class="daily-weather col-auto">
<h5>8/16/2020</h5>
<p>Temp: 86.84</p>
<p>Humidity: 43%</p>
</figure> -->
</div>
</section>
</content>
<!-- </main> -->
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" data-auto-replace-svg="nest"></script>
<script src="./Assets/script.js"></script>
</body>
</html>