-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 1.04 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
<html>
<head>
<title>Manga Scraper</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container">
<div class="span12 row" id="app-body">
<div class="span12" id="search-div">
<input type="text" placeholder="Type a manga here..." name="key" id="search-input"/>
</div>
<ul class="thumbnails" id="manga-thumbnails"></ul>
<div class="offset1 row span12" id="manga-chapters"></div>
<div class="offset1" id="manga-images"></div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/underscore.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>