-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (101 loc) · 4.59 KB
/
Copy pathindex.html
File metadata and controls
109 lines (101 loc) · 4.59 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
<!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" />
<title>Weather Application</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
</head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main">
<div class="parent p-5 text-white">
<div class="row rrr">
<div class="col-md-6 col-12 h-100 baby1">
<div class="h5">Sachin.weather</div>
<div class="wdetails d-flex flex-md-column flex-lg-row justify-content-between h-25">
<div class="tem fw-bold" id="temp1">16d</div>
<div class="plcnd">
<div class="plc h2">London</div>
<div class="dte h5">
<span class="time">13:00</span><span class="dati ms-2 ms-md-3">Friday 9,10 2021</span>
</div>
</div>
<div class="icnature">
<div class="icn">
<i class="bi bi-cloud-sun fs-1"></i>
</div>
<div class="nature">nature</div>
</div>
</div>
</div>
<div class="col-md-6 col-12 text-white baby2">
<div class="searchForm d-flex py-1">
<!-- <form class="d-flex" role="search" id="locationInput"> -->
<input class="form-control me-2 " type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-dark" type="submit">
Search
</button>
</div>
<hr />
<div class="cityList pt-lg-4 ">
<ul class="list-group cities">
<li class="list-group-item py-md-4 py-lg-2 city bg-transparent border border-0 text-white">Mumbai</li>
<li class="list-group-item py-md-4 py-lg-2 city bg-transparent border border-0 text-white">Delhi</li>
<li class="list-group-item py-md-4 py-lg-2 city bg-transparent border border-0 text-white">
Bhubaneshwar
</li>
<li class="list-group-item py-md-4 py-lg-2 city bg-transparent border border-0 text-white">Bengaluru</li>
<li class="list-group-item py-md-3 py-lg-2 city bg-transparent border border-0 text-white">Hyderabad</li>
</ul>
</div>
<hr />
<div class="h5 fw-bold">Weather-details</div>
<div class="wd pt-3 mt-2">
<ul class="list-group t border border-0">
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-4 py-lg-2 ">
<div class="amt1">Humidity</div>
<div class="humidity">33</div>
</li>
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-4 py-lg-2 ">
<div class="amt2">cloudy</div>
<div class="cloudy">33</div>
</li>
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-4 py-lg-2" >
<div class="amt3">wind</div>
<div class="wind">33</div>
</li>
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-4 py-lg-2 ">
<div class="amt4">min</div>
<div class="min">33</div>
</li>
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-4 py-lg-2 ">
<div class="amt5">max</div>
<div class="max">33</div>
</li>
<li class="list-group-item d-flex justify-content-between bg-transparent border border-0 text-white py-md-3 py-lg-2 ">
<div class="amt5">pressure</div>
<div class="press">33</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script src="script.js" ></script>
</body>
</html>