-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (35 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
<title>Прогноз погоди</title>
</head>
<body>
<header class="header">
<h1 class="title"> W E A T H E R . I R K 1 </h1>
<form class="form" id="form">
<input id="inputCity" class="input" type="text" placeholder="Введіть назву міста">
<button class="btn">search</button>
</form>
</header>
<!-- <div class="card">
<h2 class="card-city">London <span>GB</span></h2>
<div class="card-weather">
<div class="card-value">11<sup>°c</sup></div>
<img class="card-img" src="/img/example.png" alt="Weather">
</div>
<div class="card-desc">Cloud</div>
</div> -->
<footer class="footer">
<a href="https://www.instagram.com/iir.k1/" target="_blank">Iryna Kogut</a>
</footer>
<script src="/js/script.js" type="module"></script>
<script src="/js/conditions.js" type="module"></script>
</body>
</html>