-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Weather App Project (From API)" />
<meta name="author" content="SabzLearn" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<!-- Bootstrap -->
<link rel='stylesheet' href='style.css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"/>
<title>Weather App Project (From API)</title>
</head>
<body>
<div class="app-wrap">
<header>
<input type="text" autocomplete="off" class="search-box" placeholder="Search for a city..." />
</header>
<main>
<section class="location">
<div class="city">Northampton, GB</div>
<div class="date">Sunday 1 January 2023</div>
</section>
<div class="current">
<div class="temp">15<span>°c</span></div>
<div class="weather">Sunny <img src="https://cdn.weatherapi.com/weather/64x64/day/116.png" alt="weather_icon" title="sunny"></div>
<div class="hi-low">13°c / 16°c</div>
</div>
</main>
</div>
<script src='script.js'></script>
</body>
</html>