-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
27 lines (25 loc) · 1.14 KB
/
weather.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
<!DOCTYPE html>
<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>Document</title>
<link rel="stylesheet" href="weather.css">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Catamaran:wght@200&family=Courgette&family=Edu+TAS+Beginner:wght@700&family=Lato:wght@300;900&family=Mukta:wght@700&family=Mulish:wght@300&family=Open+Sans&family=PT+Sans:ital,wght@1,700&family=Poppins:wght@300&family=Raleway:wght@100&family=Roboto&family=Roboto+Condensed:wght@700&family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="srh">
<input type="text" id="inp" value="" placeholder="Enter Location">
<button onclick="myFun()">Search</button>
</div>
<h2 id="city"> </h2>
<img id="img" src="" alt="">
<h2 id="temp"> </h2>
<h2 id="type"> </h2>
</div>
<script src="weather.js"></script>
<script src="background.js"></script>
</body>
</html>