-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="./public/css/bootstrap.min.css">
<link rel="stylesheet" href="./public/css/main.css">
</head>
<body>
<div class="position-absolute w-100 h-100 bg_main d-flex justify-content-center align-items-center">
<div class="w_mainBox h_mainBox bg_mainBox d-flex flex-column justify-content-center" id="mainBox">
<div class="w-100 d-flex justify-content-center align-items-center flex-row column-gap-3 py-4">
<input type="text" id="cityValue" placeholder="Enter the name of the city" class="w_input rounded-2 border-0 py-2 px-4">
<button id="btn_search" class="btn btn-primary py-2 px-4 w_btn">
<span class="w-100 h-100">search</span>
</button>
</div>
<div class="w-100 d-flex justify-content-start align-items-center flex-column py-4">
<div class="">
<span id="cityName" class="fs_cityName text-light" style="text-shadow: 0 0 10px #e5244e;">City , CT</span>
</div>
<div class="">
<span id="date" class="fs_date text-light" style="text-shadow: 0 0 10px #e5244e;">Thursday 10 January 2023</span>
</div>
<div class="mt-4">
<span id="deg" class="fs_deg text-light" style="text-shadow: 0 0 10px #e5244e;">0°C</span>
</div>
<div class="mt-3">
<span id="weather" class="fs_weather text-light" style="text-shadow: 0 0 10px #e5244e;">Weather</span>
</div>
<div class="mt-2">
<span id="low_hi" class="fs_low_weather text-light" style="text-shadow: 0 0 10px #e5244e;">Low: 0°C / Max: 0°C</span>
</div>
</div>
</div>
</div>
<script src="./public/Js/bootstrap.bundle.min.js"></script>
<script src="./public/Js/app.js"></script>
</body>
</html>