-
Notifications
You must be signed in to change notification settings - Fork 326
/
index.html
57 lines (54 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/books-stack-of-three.png" />
<title>Books Collection</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<style>
*{
padding:0px;
margin:0px;}
table {
border-collapse:collapse;
table-layout:fixed;
width:100%
}
table td {
padding: 5px;
width:100px;
word-wrap:break-word;
}
</style>
</head>
<body>
<div class="container mt-5">
<h2 class="text-center">Books Collection</h2>
<p class="lead text-center">Check Our Repo @ <a href="https://github.com/MLSC-BSOITR/Books-Collection">blog-list</a></p>
<div class="table-responsive">
<table class=" mx-auto table table-hover table table-warning ">
<thead>
<tr>
<th>Book Name</th>
<th>Author</th>
<th>Link</th>
</tr>
</thead>
<tbody id="data-output">
</tbody>
</table>
</div>
</div>
<div class="mt-4 text-center container-fluid h-100">Created with ❤ by <a href="https://github.com/MLSC-BSOITR/Books-Collection">MLSC-BSOITR Repositry</a><p>
</div>
<!-- Script.js -->
<script src="script.js"></script>
<!-- Bootstarp Links -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>