-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·35 lines (31 loc) · 1.09 KB
/
index.html
File metadata and controls
executable file
·35 lines (31 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta charset="UTF-8">
<title>RSS Feed</title>
<script src='./loadRegions.js' defer></script>
<script src='./scroll.js' defer></script>
<link rel='stylesheet' href='./style.css'>
<link rel="icon" type="image/x-icon" href="fav.ico">
</head>
<body>
<h1 id="select-prompt" style="display: block;">Select a Region: </h1>
<div class="button-container-1">
<button id="africa">Africa</button>
<button id="americas">Americas</button>
<button id="asia">Asia Pacific</button>
<button id="europe">Europe</button>
<button id="middle-east">Middle East</button>
</div>
<section>
<hr>
<output></output>
<div class="button-container-2">
<button id="up" onclick="topFunction()" title="Go to top">▲</button>
<button id="down" onclick="startScroll()" title="Continue Scrolling">▼</button>
<button id="stop" onclick="stopScroll()" title="Stop Scrolling">▣</button>
</div>
</section>
</body>
</html>