-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (43 loc) · 1.19 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
<html>
<head>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type='text/javascript' src="index.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment.min.js"
type="text/javascript"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="main">
<div id="container">
<div id="movie">
<input type="text" class="search" id="search-input" />
</div>
<div id="short">
<button class="search button" onclick="onFetch()">Search</button>
</div>
<div>
<select id="pagination" onchange="onFetch()">
<option id="1">Page 1</option>
</select>
</div>
</div>
<div id="btn">
<table>
<thead>
<tr>
<th class="name">COMPANY</th>
<th class="title">TITLE</th>
<th class="url">LINK</th>
<th class="date">PUBLISH AT</th>
</tr>
</thead>
<tbody id="art-tb-bd">
</tbody>
</table>
</div>
</div>
</body>
</html>
43,7 Bot