-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 1.99 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
<!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 href="https://fonts.googleapis.com/css?family=Lato:300,400,700|Open+Sans:300,400" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<title>FT Wather App</title>
</head>
<body>
<main>
<header class="weather-header">
<div class="wather-header-location">
<h1>Paris <span>France</span></h1>
</div>
<div class="wather-header-time">
<p>Sun, 16 September</p>
</div>
<div class="weather-header-display">
<img class="weather-image" src="images/bolt64.png" alt="weather-image">
</div>
</header>
<div class="position-relative">
<div class="weather-temp-container">
<p class="weather-temp">8°</p>
<p class="weather-definition">Cloud</p>
</div>
</div>
<div class="weather-info">
<p class="weather-wind">2.6 km/h</p>
<p class="weather-humidity">82</p>
</div>
</main>
<section class="search-box">
<form autocomplete='off'>City:
<input type='text ' id='search' name='search-bar' placeholder='Try me!'>
<button type="submit" id='submitButton' value="">Search</button>
</form>
</section>
<footer>
<p>Made with<i class="fa fa-heart" aria-hidden="true"></i> and <span><i class="fa fa-coffee" aria-hidden="true"></i>
by Laura Enria 2018.<i class="fa fa-copyright" aria-hidden="true"></i></span>
</p>
</footer>
</body>
<script src="app/app.js"></script>
</html>