-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 939 Bytes
/
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
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="./Styles/style.css" rel="stylesheet">
<title>BookShelf</title>
</head>
<body>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-3">
<img id="logo" src="Images/Logo.png">
</div>
</div>
<div id="root" class="row justify-content-center"></div>
</div>
<script type="text/javascript" src="./Data/Books.js"></script>
<script type="text/javascript" src="./Js/index.js"></script>
</body>
</html>