-
Notifications
You must be signed in to change notification settings - Fork 179
/
index.html
56 lines (54 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head lang="en">
<meta charset="UTF-8" lang="en">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog List</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- CSS -->
<style>
a {
text-decoration: none;
}
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">BLOG-LIST</h2>
<marquee>Welcome</marquee>
<p class="lead text-center">Check Our Repo @ <a href="https://github.com/MLSC-BSOITR/Blog-List">blog-list</a></p>
<div class="table-responsive">
<table class=" mx-auto table table-hover ">
<thead>
<tr>
<th>Blog Tilte</th>
<th>Author Name</th>
<th>Tags</th>
<th>Source</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/Blog-List">MLSC BSOITR Repositry</a> <p>
</div>
<!-- Script.js -->
<script src="script.js"></script>
<!-- Bootstarp Links -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>