-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_as_table.html
52 lines (44 loc) · 1.73 KB
/
view_as_table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/search_box.css">
<link rel="stylesheet" href="css/view_style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>View As Table</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark fixed-top" id="navBar">
</nav>
<section class="header">
<div class="stdTables">
<div class="searchBox">
<input type="text" id="search_bar" placeholder=" ( : search enithing">
<input type="button" id="search_btn" onclick="searchBtn()" value="Search">
</div>
<p>Lorem ipsum dolor sit amet consectetur adip</p>
<div>
<table id="tblStudent" class="tblStudent"></table>
</div>
<p>Lorem ipsum dolor sit amet consectetur adip</p>
<div>
<table id="tblStudent2" class="tblStudent2"></table>
</div>
</div>
</section>
</table>
<section class="profiles">
</section>
<script src="js/nav.js"></script>
<script src="js/view_form.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js"
integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa"
crossorigin="anonymous"></script>
<script src="js/search.js"></script>
</body>
</html>