-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 2.31 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta chaset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="index.css">
<script src="script.js" defer></script>
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="card-container">
<div class="card">
<div class="search">
<input type="text" class="search-bar">
<button><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 16 16" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10.442 10.442a1 1 0 011.415 0l3.85 3.85a1 1 0 01-1.414 1.415l-3.85-3.85a1 1 0 010-1.415z" clip-rule="evenodd"></path><path fill-rule="evenodd" d="M6.5 12a5.5 5.5 0 100-11 5.5 5.5 0 000 11zM13 6.5a6.5 6.5 0 11-13 0 6.5 6.5 0 0113 0z" clip-rule="evenodd"></path></svg></button>
</div>
<div class="weather loading">
<h2 class="city">Weather in Jamshedpur</h2>
<h1 class="temp">51°C</h1>
<div class="flex">
<img src="https://openweathermap.org/img/wn/04n.png" alt="" class="icon">
<div class="description">Cloudy</div>
</div>
<div class="humidity">Humidity: 60%</div>
<div class="wind">Wind speed: 6.2km/h</div>
</div>
</div>
</div>
<div class="date-container">
<div id="date-container">
<div id="day" class="fullDate">Friday</div>
<div id="month" class="fullDate">Jan</div>
<div id="date" class="fullDate">1</div>
<div id="year" class="fullDate">2020</div>
</div>
<div id="clockContainer">
<div id="hour"></div>
<div id="minute"></div>
<div id="second"></div>
</div>
</div>
<script src="index.js"></script>
<script src="date.js"></script>
</body>
</html>