-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">
<title>It rains?</title>
<meta name="description" content="weather application" />
<meta property="og:title" content="weather-app" />
<meta property="og:description" content="weather application" />
<meta property="og:url" content="https://AgataS23.github.io/it-rains/" />
<meta property="og:image" content="https://AgtaS23.github.io/it-rains/img/cover.png" />
</head>
<body>
<aside class="left">
<div class="left__logo">
<h1 class="left__heading">It rains?</h1>
</div>
<input type="text" class="left__input" placeholder="Enter the city name..." aria-label="Enter the city name">
<p class="left__warning left__warning--js"></p>
<button class="left__button">Send</button>
</aside>
<main class="main">
<div class="main__city-description">
<img src="./img/sun_cloud-rain.png" alt="A picture showing the weather."
class="main__photo main__photo--js">
<h1 class="main__city-name main__city-name--js">London</h1>
<p class="main__weather main__weather--js"></p>
</div>
<div class="main__temperature">
<h2 class="main__temp main__temp--js"></h2>
<div class="main__temp-mini-max">
<div class="main__temp-align">
<p class="main__temp-description">temp. mini</p>
<p class="main__temp-mini main__temp-mini--js"></p>
</div>
<div class="main__temp-align">
<p class="main__temp-description">temp. max</p>
<p class="main__temp-max main__temp-max--js"></p>
</div>
</div>
</div>
<div class="main__weather-info">
<div class="main__pressure-info">
<p class="main__pressure-paragraph">pressure</p>
<p class="main__pressure main__pressure--js"></p>
</div>
<div class="main__humidity-info">
<p class="main__humidity-paragraph">humidity</p>
<p class="main__humidity main__humidity--js"></p>
</div>
<div class="main__wind-info">
<p class="main__wind-paragraph">wind</p>
<p class="main__wind main__wind--js"></p>
</div>
</div>
</main>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>