This repository was archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 2.26 KB
/
index.html
File metadata and controls
57 lines (56 loc) · 2.26 KB
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
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="wikiViewer">
<meta name="keywords" content="wikipedia,article,viewer,random,search">
<meta name="author" content="Giorgi Abuladze">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>wikiViewer</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+"
crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<link rel="stylesheet" href="css/master.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center">
<h1>WikiViewer</h1>
</div>
</div>
</div>
<div class="row" style="margin-top: 20px;">
<div class="col-lg-12">
<form id="searchForm" >
<div class="input-group">
<input type="text" class="form-control" placeholder="What are you searching for?..." id="input" autofocus>
<span class="input-group-btn">
<button class="btn btn-default" type="submit" id="search"><i class="fa fa-search"></i></button>
<a href="https://en.wikipedia.org/wiki/Special:Random" class="btn btn-primary upCase" target="_blank"> random article</a>
</span>
</div>
</form>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="list-unstyled" id="articles"></ul>
</div>
</div>
</div>
<footer>
<div class="col-lg-12">
<div class="text-center">
<em>Coded by Giorgi Abuladze.</em>
</div>
</div>
</footer>
<!-- JS -->
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>