-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (72 loc) · 2.48 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
<!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" />
<title>Current Weather APP</title>
<meta
name="description"
content="This is a site, website, application for an instant current weather temp, weather info, weather conditions. Search by city name for curent weather information"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="app-wrap">
<div class="mid">
<h1>Brian's International Weather App</h1>
<h2>Search by city name</h2>
<h3>or search by city state and country</h3>
<h4>Use commas between city, state, country and no spaces</h4>
<h4>Just city, state will not work</h4>
<h4>EX: atlanta or Atlanta, ga, us or New York,NY,us</h4>
</div>
<div class="search">
<input
type="text"
autocomplete="off"
class="search-box"
placeholder="City Only... or city,state,country code"
/>
</div>
<button class="click">Forecast Please (in °f)</button>
<button class="klick">Weather now govenor (in °c)</button>
<main>
<div class="location">
<div class="city">New York City, US</div>
<div class="date">Thursday 10 January 2020</div>
</div>
<div class="image">
<img
class="wthrPic"
src="http://openweathermap.org/img/wn/10d@2x.png"
alt="weather icon reflecting current conditions"
/>
</div>
<div class="current">
<h2>Current Conditions</h2>
<div class="description">raining</div>
<div class="temp">35 <span>°f</span></div>
<div class="feels"></div>
<div class="weather">Rain</div>
<div class="hi-low">23 °f / 38°f</div>
<div class="windSpeed"></div>
<div class="windGust"></div>
<div class="press"></div>
<h3 class="fun">
fun fact:
</h3>
<div class="fact">
The average pressure at sea level is 1013.25 millibars.
</div>
</div>
</main>
<div class="future">
<div class="tomorrow">What will tomorrow bring?</div>
<div class="twoDays">& 2 days from now?</div>
<div class="space"></div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>