-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.15 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
<!-- Welcome to WikiSurfer!
This is still in active development. The plan is for a website that lets you surf
through interesting Wikipedia articles. (Kind of like an educational alternative to TikTok).
I am to make it customizable and plan on moving over to React at some point.
-->
<!DOCTYPE html>
<html>
<head>
<title>WikiSurfer🏄</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="Favicon_Logo.png">
</head>
<body>
<div id="header">
<h1><a href="index.html">WikiSurfer🏄</a></h1>
<h4>Azaria Kelman</a></h4>
</div>
<div id="white-box">
<div id="main">
<iframe id="wiki-article" src="" frameborder="0" width="100%" height="100%" style=" clip-path: inset(15% 0 0 0 round 5%);
; border-radius: 5%;"></iframe>
</div>
</div>
<div id="footer">
<button id="previous-btn">Previous</button>
<h3><a href="https://github.com/azariak/WikiSurfer">View source code.</a>
<a href = "changelog.html">Version: 0.5.</a></h3>
<button id="next-btn">Next</button>
</div>
<script src="function.js"></script>
</body>
</html>