-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.98 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
<!-- Submitted by Jagadeesh Kumar . S -->
<!-- My name is Jagadeesh Kumar . S -->
<!-- My Email Address is [email protected] -->
<!-- Kindly contribute some money to my UPI address which is jagadeesh-kumar.ybl -->
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content="width = device-width, initial-scale=1.0">
<title>Pagination</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<div id = "content">
</div>
<div class = "pagination">
<input type = "button" id = "13" value= "First" onclick = "data1(this)">
<input type = "button" id = "11" value= "Previous" onclick = "data1(this)">
<input type = "button" value = "1" id = "1" onclick = "data1(this)">
<input type ="button" value = "2" id = "2" onclick = "data1(this)">
<input type = "button" id="3" onclick ="data1(this)" value = "3">
<input type = "button" id="4" onclick ="data1(this)" value = "4">
<input type = "button" id="5" onclick ="data1(this)" value = "5">
<input type = "button" id="6" onclick ="data1(this)" value = "6">
<input type = "button" id="7" onclick ="data1(this)" value = "7">
<input type = "button" id="8" onclick ="data1(this)" value = "8">
<input type = "button" id="9" onclick ="data1(this)" value = "9">
<input type = "button" id="10" onclick ="data1(this)" value = "10">
<input type = "button" id="12" onclick ="data1(this)" value = "Next">
<input type = "button" id="14" onclick ="data1(this)" value = "Last">
</div>
<script src = "script.js"></script>
</body>
</html>
<!-- Submitted by Jagadeesh Kumar . S -->
<!-- My name is Jagadeesh Kumar . S -->
<!-- My Email Address is [email protected] -->
<!-- Kindly contribute some money to my UPI address which is jagadeesh-kumar.ybl -->