-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>A Simple Grid</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<script src="./js/script.js"></script>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="wrapper_body">
<div id="table_wrapper">
<div class="heading_wrapper">
<div class="heading_name">Name
</div>
<div class="heading_age">Age
</div>
</div>
<div class="content_wrapper">
</div>
</div>
<div id="toolbar">
<button id="prev" onclick="javascript:prev();">Previous</button>
<button id="next" onclick="javascript:next();">Next</button>
<button id="first" onclick="javascript:first();">First</button>
<button id="last" onclick="javascript:last();">Last</button>
</div>
</div>
</body>
</html>