-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (111 loc) · 4.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<html>
<head>
<title>Weather App</title>
<meta charset="UTF-8" />
<meta name="author" content="shimaa" />
<meta name="description" content="weather app" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="html,css,js,ajax,weather" />
<!-- Page icon Link -->
<link rel="icon" href="images/icon.png" />
<!-- Font Family Link -->
<link rel="stylesheet" href="https://use.typekit.net/oov2wcw.css">
<!-- Fontawesome Link -->
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<!-- Bootstrap Link -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Page Style Link -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!------------------------ Start Display Temp ------------------------>
<section class="display-temp " id="search">
<div class="bg-color py-5 ">
<div class="container">
<div class="search m-auto">
<input type="text" id="search-bar" class="w-100 mb-5" placeholder=" Search City..." style="font-family:Arial, FontAwesome"/>
</div>
<div class="city-temp d-flex">
<!-- Today's Card -->
<div class="temp-card shadow">
<div class="day-and-date d-flex justify-content-between">
<p id="today">Monday</p>
<p id="today-date">3 May</p>
</div>
<div class="temp-datails">
<p id="location"></p>
<div class="d-flex justify-content-between my-4">
<div class="pt-3">
<h2 id="today-degree" class="d-inline-block"></h2><h2 class="d-inline-block"><sup>o</sup>C</h2>
</div>
<img id="today-icon" width="90"/>
</div>
<p id="today-description"></p>
<div class="details">
<i class="fas fa-umbrella pr-1"></i>
<span id="humidty"></span> <span>%</span>
<i class="fas fa-wind pl-3 pr-1"></i>
<span id="wind"></span> <span>km/h</span>
<i class="far fa-compass pl-3 pr-1"></i>
<span id="compass"></span>
</div>
</div>
</div>
<!-- Next Days Cards -->
<div class="temp-card text-center shadow">
<div class="day-and-date">
<p class="nextDay">Tuesday</p>
</div>
<div class="temp-datails">
<div>
<img class="nextDay-icon" width="90"/>
</div>
<h2 class="max-degree d-inline-block"></h2><h2 class="d-inline-block"><sup>o</sup>C</h2>
<br>
<p class="min-degree d-inline-block"></p><p class="d-inline-block"><sup>o</sup>C</p>
<p class="nextDay-description"></p>
</div>
</div>
<div class="temp-card text-center shadow">
<div class="day-and-date">
<p class="nextDay">Wednsday</p>
</div>
<div class="temp-datails">
<div>
<img class="nextDay-icon" width="90"/>
</div>
<h2 class="max-degree d-inline-block"></h2><h2 class="d-inline-block"><sup>o</sup>C</h2>
<br>
<p class="min-degree d-inline-block"></p><p class="d-inline-block"><sup>o</sup>C</p>
<p class="nextDay-description"></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!------------------------ End Display Temp ------------------------>
<!------------------------ Start Footer ------------------------>
<footer>
<div class="container">
<p class="text-center text-white mb-0">Copyright © 2021 Designed by Yosof. All rights reserved</p>
<div class="social-media text-white text-center mt-2">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-pinterest"></i>
<i class="fab fa-google-plus"></i>
</div>
</div>
</footer>
<!------------------------ End Footer ------------------------>
<!-- JQuery Link -->
<script src="js/jquery-3.5.1.slim.min.js"></script>
<!-- Popper Link -->
<script src="js/popper.min.js"></script>
<!-- Bootstrap Link -->
<script src="js/bootstrap.min.js"></script>
<!-- Page Main Script Link -->
<script src="js/main.js"></script>
</body>
</html>