-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (45 loc) · 1.72 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>INFO PAGE</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link href='http://fonts.googleapis.com/css?family=Oleo+Script' rel='stylesheet' type='text/css'>
<!-- Banner Exchange Code For 300 x 250 -->
<script src="http://www.hit4hit.org/js/adsbyhit4hit.js"></script>
</head>
<body>
<div id="content">
<header>
<h1>THE BEST INFO PAGE</h1>
</header>
<main>
<div>
<h2>INFO ABOUT THE WEATHER</h2>
<form id="weather">
<input type="text" placeholder="Input your location..">
<button type="button" id="weatherButton" onclick="getWeather()">Get weather!</button>
</form>
<div id="results"></div>
</div>
</main>
<aside>
<h1>BBC NEWS HEADLINES</h1>
<button type="button" id="newsButton" onclick="getNews();">Get the news!</button>
<table id="newsTable">
</table>
</aside>
<section>
<h1>EXCHANGE RATES</h1>
<div id="exChCon"></div>
</section>
<footer id="footer"><small>© Copyright 2018, Mihail Olaru</small></footer>
</div>
<!-- Banner Exchange Code For 300 x 250 -->
<hit4hit catid="11307611627018633095e99"><a href="https://www.hit4hit.org" target="_blank"
title="Hit4Hit.org - Website Traffic Exchange">traffic exchange</a></hit4hit>
<hit4hit catid="1127607583501863309558d"><a href="https://www.hit4hit.org" target="_blank"
title="Hit4Hit.org - Website Traffic Exchange">traffic exchange</a></hit4hit>
<!-- End Banner Exchange Code For 300 x 250 -->
<script src="index.js"></script>
</body>
</html>