-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (42 loc) · 1.69 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
55
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Wikipedia Web Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Wikipedia Web Search</h1>
<h3>Search articles on the world's largest free online encyclopedia</h3>
<h3 class="random-wiki">Visit random Wikipedia Page <a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">(Click here) </a></h3>
</header>
<main>
<div class="search-container">
<form>
<span class="search-text">Enter text here</span>
<input type="search" class="text">
<input type="button" value="Search" class="btn search-btn">
</form>
</div>
<h2 class="result"></h2>
<div class="loader"></div>
<div class="entries">
</div>
</main>
<footer>
<div class="credits">
<p>Powered by <a href="https://www.wikipedia.org/" target="_blank">Wikipedia</a></p>
<p>© 2019 Akhilesh Santoshwar</p>
<a href="tel:7507277669" style="color: white;" class="fa fa-phone"></a> |
<a href="mailto:[email protected]" style="color: white;" class="fa fa-envelope-o"></a>
</div>
</footer>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>