-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (32 loc) · 1.62 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
<!DOCTYPE html>
<head>
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Great+Vibes" rel="stylesheet">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="https://use.fontawesome.com/d1c3faee13.js"></script>
</head>
<body>
<div class="container">
<h1>Wikipedia Viewer</h1>
<!-- Search bar function -->
<input class="form-control" id="searchTerm" placeholder="Type words and/or terms here">
<!-- Search bar button -->
<button id="search" type="button" class="btn btn-primary"> Search <i class="fa fa-search fa-1x" aria-hidden="true"></i></button>
<!-- Random search button -->
<a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">
<button type="button" class="btn btn-primary"> Random </button></a>
</div><!-- end of div -->
<!-- Search Results -->
<div class="container">
<div id="result"></div>
</div>
<script src="script.js"></script>
</body>
<footer>
<h5>Written & Coded by <strong><font face="Great Vibes"; style="font-size:35px"> Zara Otamias</font> </strong> ♥</h5>
</footer>
</html>