-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1020 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1020 Bytes
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
<!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="style.css">
<script src="https://kit.fontawesome.com/1c23afdfab.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="cont">
<div class="weathericon"><i class="fa-solid " id="icon"></i></i></div>
<div class="rotor r1"></div>
<div class="rotor r2"></div>
<div class="rotor r3"></div>
<div class="details">
<h1 class="city"><i class="fa-solid fa-location-dot"></i> <p class="city-in" style="display: inline;">, IN</p></h1>
<p class="date-time" id="time">WED, 03 | NOV | 2023</p>
<div class="tempDiv">
<h1 class="temp"></h1>
<img src="./image/celsius.png" alt="">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>