-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathindex.html
116 lines (107 loc) · 3.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="QuickWiKi">
<meta name="description" content="With a simple and contemporary user interface, get a brief and concise summary of the Wikipedia page you choose in a matter of seconds">
<meta name="keywords" content="QuickWiKi, Wikipedia summary, short summary, open-source">
<meta name="robots" content="index,follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="images/favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>QuickWiKi</title>
</head>
<body>
<div class="header">
<div>
<a href="./index.html" class="title">Quick<span>Wiki</span></a>
</div>
</div>
<div class="center-container">
<!-- Alert message badge starts */ -->
<div>
<div class="alert hideit" id="showalert">
<span class="closebtn" onclick="closethealert()">×</span>
<strong class="alertmessage"
>Input field are null Please enter the some text in input
field.</strong
>
</div>
</div>
<!-- Alert message badge ends */ -->
<form class="search">
<input type="text" id="url" placeholder="Paste your URL here / Search for a topic" autofocus />
<input
id="submitbtn"
type="submit"
value="Submit"
/>
</form>
<div class="container" id="steps">
<!-- <h4>Steps:</h4> -->
<p class="moto">
Get quick and short summary for your desired wikipedia article
</p>
<ol class="myOL">
<li>Copy, paste the URL of your desired WikiPedia Page (or) <br/>Input any topic that you want to know about in the box above</li>
<li>Click on the submit button.</li>
<li>Get the Summary of the WikiPedia Page in an instant</li>
</ol>
</div>
<p id="error"></p>
</div>
<div class="content">
<div class="header1">
<div class="shortcontent">
<div class="page_title"></div>
<div class="flags discription"></div>
<div class="pageurl">
<h4 class="flag_title">Page URL |</h4>
<div class="flags url">
<a
class="url_flag"
target="_blank"
href=""
><!--Page url title here, after api fetch--></a>
</div>
</div>
<div class="pageurl">
<h4 class="flag_title">Last Edited |</h4>
<div class="flags url ">
<p class="last_edited"></p>
</div>
</div>
</div>
<div class="image zoom">
<!--Page image here, after api fetch-->
</div>
</div>
<div class="extract">
<article class="article">
<p>This is just sample text, main page content with load after a successful api fetch<!--Page content here, after api fetch--></p>
</article>
</div>
</div>
<div class="footer">
<p class="footer-credit">
Copyright © 2022 QuickWiKi, All Rights Reserved
</p>
<div class="github">
<p>
<a href="https://github.com/kartik3805/QuickWiKi">
<i class="fa fa-github" aria-hidden="true"> </i
></a>
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>