-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (48 loc) · 2.16 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
44
45
46
47
48
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta content="TodaysWeather by Vili" property="og:site_name">
<meta content="https://v1li.github.io/TodaysWeather" property="og:url">
<meta content="TodaysWeather" property="og:title">
<meta content="TodaysWeather tells you todays current weather in any city or area!" property="og:description">
<meta content="website" property="og:type">
<meta content="https://www.flaticon.com/free-icon/sunny_979585?term=sun&page=1&position=9&page=1&position=9&related_id=979585&origin=tag" property="og:image"/>
<meta content="#FFFFFF" data-react-helmet="true" name="theme-color"/>
<meta content="Vp, HerraVp, Vili, V1li, vili.dev, weather, current weather, todays weather, TodaysWeather" name="keywords">
<title>TodaysWeather</title>
<link href="img/icon.png" rel="icon" type="image/icon">
<link href="css/style.css" rel="stylesheet">
<script src="js/api.js" defer></script>
<link crossorigin="anonymous"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"
integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" rel="stylesheet">
<script crossorigin="anonymous" src="https://kit.fontawesome.com/f5b605371d.js"></script>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<div class="weather-card">
<div class="search">
<input type="text" class="search-bar" placeholder="Search">
<button class="search-button">
<i class="fas fa-search"></i>
</button>
</div>
<div class="weather loading">
<h2 class="city"></h2>
<div class="temp"></div>
<div class="flex">
<img src="https://openweathermap.org/img/wn/04n.png" alt="" class="icon"/>
<div class="description"></div>
</div>
<div class="humidity"></div>
<div class="wind"></div>
<p id="date"></p>
</div>
</div>
<div class="footer">
· <a href="https://vili.dev" target="_blank">Copyright © 2024 Vili.</a> ·
</div>
</body>
</html>