-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 1014 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link href = "https://fonts.googleapis.com/font-awesome/4.7.0/css/font-awesome.min.css" rel = "stylesheet">
<link rel="stylesheet" type="text/css" href="api.css">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="card">
<h2><i class="fa fa-map-marker"></i><span id="location"></span></h2>
<h6 id="weather"></h6>
<h4><span id="temp"></span><sup>o</sup>C</h4>
<img src="" id="icon">
<button onclick="window.location.reload()" class="refresh"><i class="fa fa-refresh"></i></button>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous "></script>
<script src = "script.js"></script>
</html>