-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (46 loc) · 2.16 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wikipedia Viewer</title>
<!--Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<!--Font-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css" />
<!----CSS-------->
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div class="container-fluid">
<h1 class="text-center">Wikipedia Viewer</h1>
<div class="row">
<div class="col-md-12">
<div class="input-group">
<input id="input" type="text" class="form-control" placeholder="I want to learn about...">
<span class="input-group-btn">
<button id="search" class="button btn" type="button"><span class="glyphicon glyphicon-search"></span></button>
</span>
<span class="input-group-btn">
<a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank"><button class="button btn" type="button"><i class="fa fa-random" aria-hidden="true"></i></button></a>
</span>
</div> <!-- /.input-group -->
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
</div> <!-- /row -->
<div id="results">
</div> <!-- /#results -->
</div> <!-- /.container-fluid -->
<footer class="text-center">
<p><i class="fa fa-copyright" aria-hidden="true"></i>
Designed and coded by <a href="https://github.com/7saheelahmed" target="_blank">Saheel Ahmed</a>.</p>
</footer>
<!--Javascript-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>