-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (121 loc) · 4.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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="shortcut icon" href="assets/favicon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/themes/light.css">
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/color.css" />
<link rel="stylesheet" href="/common.css" />
<link rel="stylesheet" href="/style.css" />
<title>Library</title>
</head>
<body>
<div class="app">
<div class="main-sidebar">
<div class="main-sidebar__top">
<div class="main-sidebar__item active">
<sl-button type="text">
<img src="assets/home.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<sl-button type="text">
<img src="assets/book.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<sl-button type="text">
<img src="assets/users.svg" />
</sl-button>
</div>
</div>
<div class="main-sidebar__bottom">
<div class="main-sidebar__item">
<sl-button type="text">
<img src="assets/logout.svg" />
</sl-button>
</div>
</div>
</div>
<div class="content">
<div class="content__header">
<div class="content__header-top">
<a href="/Login">Login</a>
/
<a href="/Signup">Signup</a>
</div>
<div class="content__header-poster"></div>
</div>
<div class="content__section">
<h2>Latest Books</h2>
<div class="row-items">
<a href="Book">
<div class="shadow book-item">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg"
/>
<div class="description">
<strong>Chain of Iron</strong>
<p>Cassandra Clare</p>
</div>
</div>
</a>
<a href="Book">
<div class="shadow book-item">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg"
/>
<div class="description">
<strong>Chain of Iron</strong>
<p>Cassandra Clare</p>
</div>
</div>
</a>
<a href="Book">
<div class="shadow book-item">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg"
/>
<div class="description">
<strong>Chain of Iron</strong>
<p>Cassandra Clare</p>
</div>
</div>
</a>
<a href="Book">
<div class="shadow book-item">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg"
/>
<div class="description">
<strong>Chain of Iron</strong>
<p>Cassandra Clare</p>
</div>
</div>
</a>
<a href="Book">
<div class="shadow book-item">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91Y6gyoK8ZL.jpg"
/>
<div class="description">
<strong>Chain of Iron</strong>
<p>Cassandra Clare</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</body>
</html>