-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Set Viewport For Small Screen Sizes -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<!-- Import CSS -->
<link rel="stylesheet" href="/css/bootstrap.css">
<link rel="stylesheet" href="/css/style.css">
<!-- IMport JavaScript Files -->
<script src="/js/jquery-3.2.1.js" charset="utf-8"></script>
<script src="/js/main.js" charset="utf-8"></script>
<title>Wikipedia Viewer</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div id="searchBar" class="search-bar">
<h4><a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">Click here for a random wikipedia article</a></h4>
<h3>OR</h3>
<div class="input-group">
<input class="form-control" placeholder="Search wikipedia article" name="search-input" id="searchInput" type="text">
<div class="input-group-btn">
<button class="btn btn-default" type="button" name="search" id="searchButton"><i class="fa fa-search"></i></button>
</div>
</div>
</div>
<div id="searchResults" class="search-results">
<!-- Search Results Goes Here -->
</div>
</div>
</div>
<footer>
<p>Coded by <a target="_blank" href="https://www.freecodecamp.org/elvismalope">Elvis Malope</a></p>
</footer>
</div>
</body>
</html>