-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (98 loc) · 5.25 KB
/
Copy pathindex.html
File metadata and controls
166 lines (98 loc) · 5.25 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
<!-- files bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- icons -->
<link rel="stylesheet" href="icons/css/all.min.css" />
<!-- my file style -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body >
<nav class="py-5 d-flex justify-content-between " >
<div class="icoSite ms-4 ">
<div class="imgLogo d-flex ">
<img src="logo.png" alt="">
<div class="contentLogo d-flex flex-column ms-3 ">
<p class="m-0 " > Weather </p>
<small> tagline goes here</small>
</div>
</div>
</div>
<div class="itemNav me-5 pe-3 ">
<ul class=" list-unstyled d-flex justify-content-between " >
<li class="def-style-li" ><a href="" class="def-style-li-a" >Home</a></li>
<li><a href="" class="">News</a></li>
<li><a href="" class="">Live cameras</a></li>
<li><a href="" class="">Photo</a></li>
<li><a href="" class="">Contact</a></li>
</ul>
</div>
</nav>
<header class=" vh-100 " >
<div class="container ps-4 pe-4 pt-4 ">
<div class="inputs position-relative " >
<input type="text" class="w-100 mt-5 mb-5 p-3 searshNameCity " placeholder="Find Weather your location" >
<button class=" text-center position-absolute text-white findWeather " > Find</button>
</div>
<div class="forRadius">
<div class="row mt-3 ">
<div class="col-lg-4 col1 py-2 text-center pb-4 pt-3 ">sturday</div>
<div class="col-lg-4 col2 py-2 text-center pb-4 pt-3 ">sunday</div>
<div class="col-lg-4 col3 py-2 text-center pb-4 pt-3 ">monday</div>
<div class="col-lg-4 col4 ">
<div class="locationNow ms-3 yourLocation ">Cairo</div>
<div class="temperature">
<h3 class="h1 mt-3 mb-3 ms-3 mustBigFont "><span class="temp-c" >34</span> <span> <sup class="sup1">o</sup> C</span></h3>
<img src="https://cdn.weatherapi.com/weather/64x64/day/122.png" class="mb-3 cur-weth-img " alt="">
<p class="ms-3 text-info cur-info-weth " id="cur-info-weth" >sunny</p>
<div class="ico ms-3 mb-5 ">
<span class="m-2" ><img src="icon-umberella.png" class="me-2" alt="">20%</span>
<span class="m-2" ><img src="icon-wind.png" class="me-2" alt="">18km/h</span>
<span class="m-2" ><img src="icon-compass.png" class="me-2" alt="">East</span>
</div>
</div>
</div>
<div class="col-lg-4 col5 pt-5 ">
<div class="temperature-nextDay text-center ">
<img src="113.webp" class="mb-3 next-weth-img " id="cur-weth-img" alt="">
<h3 class=" mt-3 mb-3 ms-3 "><span class="nextTemp-c-max" >32</span> <span> <sup class="sup2" >o</sup> C</span></h3>
<h5 class=" mt-3 mb-3 ms-3 "><span class="nextTemp-c-min" >24</span> <span> <sup class="sup3">o</sup> C</span></h5>
<p class="ms-3 text-info next-info-weth ">sunny</p>
</div>
</div>
<div class="col-lg-4 col6 pt-5 ">
<div class="temperature-thirdDay text-center ">
<img src="113.webp" class="mb-3 third-weth-img " alt="">
<h3 class=" mt-3 mb-3 ms-3 "><span class="thirdTemp-c-max" >32</span> <span> <sup class="sup2" >o</sup> C</span></h3>
<h5 class=" mt-3 mb-3 ms-3 "><span class="thirdTemp-c-min" >24</span> <span> <sup class="sup3">o</sup> C</span></h5>
<p class="ms-3 text-info third-info-weth " id="third-info-weth" >sunny</p>
</div>
</div>
</div>
</div>
</header>
<footer class="ps-5 m-0 " >
<div class="content ">
<div class="inputs position-relative " >
<input type="text" class=" mt-5 mb-5 p-3 " placeholder="Find your location" >
<button class=" text-center position-absolute text-white " > Find</button>
</div>
<div class="icons">
<ul class="d-flex list-unstyled " >
<li> <i class="fa-brands fa-facebook-f"></i></li>
<li> <i class="fa-brands fa-twitter"></i></li>
<li> <i class="fa-brands fa-google-plus-g"></i></li>
<li> <i class="fa-brands fa-pinterest"></i></li>
</ul>
</div>
</div>
<p class=" m-0 " >Copyright 2014 Company name. Designed by Themezy. All rights reserved</p>
</footer>
<script src="JS/bootstrap.bundle.min.js" ></script>
<script src="./js/index.js" ></script>
</body>
</html>