forked from Alexever17/WeatherAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 947 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
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Oleksandr Malakhov">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Look up your local weather!">
<title>The Weather App</title>
<link href="index.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>The Weather App</h1>
</header>
<div class="block cityblock">
<div id="cityarea"></div>
<div id="weatherarea"></div>
</div>
<div class="block">
<div id="temperaturarea"></div>
</div>
<div class="block" id="tempbutton">
<div id="imagecode"></div>
</div>
<div class="block" id="inputbutton">
<div class="othercity"></div>
</div>
<script src="jquery-3.2.1.min.js"></script>
<script src="master.js"></script>
</body>
</html>