-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchmanga.html
27 lines (27 loc) · 921 Bytes
/
searchmanga.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
<html>
<head>
<title>Search for Manga</title>
<link rel = "stylesheet" href = "css/forsearch.css">
<link rel = "icon" href = "images/favicon.ico" type = "image/x-icon">
<link rel = "icon" href = "images/android-chrome-192x192.png" type = "image/x-icon">
<link rel = "icon" href = "images/apple-touch-icon.png" type = "image/x-icon">
</head>
<body>
<div id = "srcbx">
<input type = "text" id = "input"></input>
<button onclick = "searchmanga()">Search</button>
</div>
<div id = "results"></div>
<script>
function searchmanga()
{
perform1();
}
function viewmanga(link)
{
perform2(link);
}
</script>
<script src = "js/mangasearchscraper.js"></script>
</body>
</html>