forked from PLPAfrica/weather-app-bootcamp-project-webDev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.32 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PLP Weather App | Home</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap">
</head>
<body>
<div class="app">
<h1>Weather App</h1>
<header>
<input type="text" class="search-box" placeholder="Search for your city...">
<button class="search-button"><i class="fa fa-search"></i></button>
</header>
<main>
<section class="location">
<div class="city"></div>
<div class="date"></div>
</section>
<div class="current">
<div class="temp"><span></span></div>
<div class="weather"></div>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>