-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.16 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
<!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">
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script defer src="./js/script.js" type="text/javascript"></script>
<title>Tempestas</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/fedf65fe35.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div class="regionSelectBox">
<label for="region">Choose your region:</label>
<select name="region" class="btn btn-secondary" id="region">
<option value="Canada">Canada</option>
<option value="US">US</option>
<option value="Mexico">Mexico</option>
</select>
</div>
<div class="appTitleBox">
<header>
<h1>Tempestas Weather Fetcher</h1>
<h5></h5>
</header>
</div>
<div class="returnDataDisplayBox">
<main>
<h4>Location:</h4>
<p id="returnLocale"></p>
<h4>Temperature:</h4>
<p id="temperature"></p>
<h4>Feels Like:</h4>
<p id="feelsLike"></p>
<h4>Weather:</h4>
<p id="weather"></p>
</main>
</div>
<div class="userInputBox">
<form>
<label>
Enter Locale:
<input type="text" class="inputs" id="localeInp" placeholder="e.g. Louisville, KY"/>
</label>
<button type="submit" value="submit" class="btn btn-primary inputs" id="getWeatherBtn">Get Weather</button>
</form>
</div>
</div>
</body>
</html>