-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 875 Bytes
/
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
<body>
<header class="header">
<div class="header--container">
<h1>Free Code Camp Weather Application!</h1>
</div>
</header>
<section class="overlay">
<input type="text" placeholder="Zip Code" class="input">
<p class="paragraph--header"><span class="name"></span></p>
<p class="paragraph--header"><span class="state"></span</p>
<p class="paragraph--header"><span class="world"</span></p>
<p class="paragraph--temp">
<span>
<ul class="temp">
<li class="f"></li>
<li class="c"></li>
</ul>
</span>
</p>
<p class="paragraph--condition"><span class="condition"></span></p>
<img class="img--icon"></img>
<button class="btn">Get Weather</button>
</section>
</body>