-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Wikipedia Viewer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<head>
<script src="https://use.fontawesome.com/bbcf6f8705.js"></script>
</head>
<aside>
<div id="left-icon">
<div id="icon-container"><i class="fa fa-times fa-2" aria-hidden="true"></i></div>
</div>
<div id="right-content">
<!-- Content will be placed here -->
</div>
</aside>
<div id="search-area">
<H1>Wikipedia Article Viewer </H1>
<div id="search-random">
<div class="search wikiwidget">
<h2>Search</h2>
</div><div class="input wikiwidget"><input type="text">
</input>
</div><div class="random wikiwidget">
<h2>Random</h2>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>