-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (51 loc) · 1.83 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
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<link rel="icon" type="image/png" href="./assets/favicon.png" />
<!-- jQuery -->
<!-- when ready for production change link to jquery-3.6.0.min.js -->
<script src="./jquery/jquery-3.6.0.min.js"></script>
<!-- Normalize -->
<link href="./css/normalize.css" rel="stylesheet" />
<!-- Our Style Sheet -->
<link href="./css/index.css" rel="stylesheet" />
<!-- Font Family Nunito-->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Smart Library</title>
</head>
<body>
<!-- Nav Bar -->
<div class="navybar"></div>
<!-- Admin login modal -->
<div class="loginModal"></div>
<!-- main component, changed by jquery -->
<div class="main"></div>
<!-- Footer -->
<div class="footer"></div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
<script src="./js/index.js"></script>
</body>
</html>