-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
73 lines (73 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeatherScope</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/utility.css">
<link type="image/png" sizes="16x16" rel="icon" href="./assets/Favi-icons/icons8-snowy-sunny-day-windows-11-color-16.png">
<link type="image/png" sizes="32x32" rel="icon" href="./assets/Favi-icons/icons8-snowy-sunny-day-windows-11-color-32.png">
<link type="image/png" sizes="72x72" rel="icon" href="./assets/Favi-icons/icons8-snowy-sunny-day-windows-11-color-72.png">
<link type="image/png" sizes="96x96" rel="icon" href="./assets/Favi-icons/icons8-snowy-sunny-day-windows-11-color-96.png">
</head>
<body class="text-white">
<div class="head flex flex-column justify-center">
<h1 class="title">WeatherScope</h1>
<p class="subtitle">Live weather. Beautifully visualized.</p>
</div>
<div class="container flex flex-column item-center space-between">
<div class="searchbar flex flex-column">
<div class="flex">
<img class="search invert img" src="https://img.icons8.com/?size=100&id=85149&format=png&color=000000"
alt="location-icon">
<input type="text" placeholder="Enter your location">
<img class="location invert img" src="https://img.icons8.com/?size=100&id=59878&format=png&color=000000"
alt="search-icon">
</div>
<div class="flex flex-column" id="recent-search">
</div>
</div>
<div class="img-status disnone">
<img src="" alt="Weather-status">
</div>
<div class="status flex flex-column item-center marBotm-30px disnone">
<h1>13<sup>°C</sup></h1>
<p>mist</p>
</div>
<div class="extraData flex disnone">
<div class="humidity flex gap-2 item-center">
<img class="invert img" src="https://img.icons8.com/?size=100&id=79566&format=png&color=000000"
alt="humidity-icon">
<div class="details flex flex-column">
<h3>88%</h3>
<p>Humidity</p>
</div>
</div>
<div class="windSpeed flex gap-2 item-center">
<img class="invert img" src="https://img.icons8.com/?size=100&id=wGscuXAAEzt4&format=png&color=000000"
alt="windSpeed-icon">
<div class="details flex flex-column">
<h3>1Km/h</h3>
<p>Wind Speed</p>
</div>
</div>
</div>
</div>
<div class="userLocation">
<div class="tooltip">Use my location</div>
<button><img class="invert img" src="https://img.icons8.com/?size=100&id=60991&format=png&color=000000"
alt="my-location"></button>
</div>
<div class="userScreenshot">
<div class="tooltip2">Take a screenshot</div>
<button><img class="invert img" src="https://img.icons8.com/?size=100&id=11772&format=png&color=000000"
alt="my-screenshot"></button>
</div>
<div class="credits">Powered by OpenWeather & Vercel · Built by Dipanshu</div>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"
integrity="sha512-BNaRQnYJYiPSqHHDb58B0yaPfCu+Wgds8Gp/gU33kqBtgNS4tSPHuGibyoeqMV/TJlSKda6FXzoEyYGjTe+vXA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>