-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 2.1 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
<!DOCTYPE html>
<html>
<!-- _____
|A . |
| / \ |
|( . )|
| T |
---"---
מְפַקֵד -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Weather Dashboard</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="hero">
<div class="hero-excel">
<h1>Weather Dashboard</h1>
<p>
<h2>Get weather conditions for almost anywhere on earth!</h2>
</p>
</div>
<br>
</div>
</section>
<br>
<div>
<div>
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-4">
<label>Search by city name:</label>
<div class="mb-4">
<input type="text" class="cityText" placeholder="Reykjavík">
<div class="srcInit">
<button class="btn-primary search" type="button">SEARCH</a></button>
</div>
</div>
<div class="prevSch"></div>
</div>
<div class="col-12 col-md-8">
<div class="row">
<div class="current">
<div class="mb-4">
<img class="icons" />
<h1 class="cityCurrentName"></h1>
<h2 class="cityCurrentDate"></h2>
<div class="cityCurrentMain">
</div>
</div>
</div>
<div class="row fiveDay"></div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment-with-locales.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>