-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
245 lines (200 loc) · 6.03 KB
/
index.html
File metadata and controls
245 lines (200 loc) · 6.03 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet">
<title>Comicon</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
/* background-image: url('./Untitled\ design\ \(2\).png'); */
}
h1{
font-family: "Anta";
}
header {
background-color: #fff;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
height: 60px;
display: flex;
align-items: center;
}
.catalog-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
margin-top: 20px;
}
.book-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 15px;
width: 250px;
padding: 15px;
text-align: center;
transition: transform 0.3s ease-in-out;
}
.book-card:hover {
transform: scale(1.05);
}
.book-card img {
max-width: 100%;
border-radius: 8px;
margin-bottom: 10px;
}
.book-card h3 {
font-size: 16px;
color: #333;
margin-bottom: 5px;
}
.book-card p {
font-size: 14px;
color: #666;
margin-bottom: 10px;
}
.book-card a {
color: #3498db;
text-decoration: none;
font-weight: bold;
display: block;
}
.navig{
display: flex;
/* background-color: rgb(0, 0, 0); */
align-items: center;
/* padding: none ;
margin-top: none; */
justify-content: flex-end;
}
.browse{
background-color: white;
border-radius: 30px;
height: 30px;
width: 70px;
border: none;
font-weight: 700;
margin-left: 30px;
}
.browse:hover{
cursor: pointer;
background-color: black;
color: white;
}
.comm:hover{
cursor: pointer;
background-color: black;
color: white;
}
.comm{
background-color: white;
border-radius: 30px;
height: 30px;
width: 90px;
border: none;
font-weight: 700;
margin-right:20px;
}
.searchbar input {
border-radius: 30px;
width: 900px;
height: 30px;
border: none;
margin-right: 40px;
background-color: rgba(128, 128, 128, 0.151);
}
.sign {
background-color: white;
border-radius: 30px;
height: 30px;
width: 70px;
border: none;
font-weight: 700;
margin-right:20px;
margin-left: 30px;
}
.sign:hover{
cursor: pointer;
background-color: black;
color: white;
}
.login:hover{
cursor: pointer;
background-color: black;
color: white;
}
.login{
background-color: white;
border-radius: 30px;
height: 30px;
width: 70px;
border: none;
font-weight: 700;
margin-right:40px;
}
.scroll img{
width: 100%;
height: 800px;
}
.text{
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="navig">
<h1>Comicon</h1>
<button class="browse">Browse</button>
<button class="comm">Community</button>
<form class="searchbar" action="/search" method="get">
<!-- <label for="search">Search:</label> -->
<input class="searchbar1" type="text" id="search" name="q" placeholder=" Search">
<!-- <input type="submit" value="Search"> -->
</form>
<button class="sign">SignUp</button>
<button class="login">Log In</button>
</div>
</header>
<div class="scroll">
<img src="./Untitled design (2).png" alt="">
</div>
<h1 class="text"> Comicon Originals</h1>
<div class="catalog-container">
<div class="book-card">
<img src="./images/WhatsApp Image 2024-03-06 at 12.02.00_2164bd56.jpg" alt="Book Cover 1">
<h3>Through the Cosmic Veil: The Legend of Sachin and the Galactic Explorers</h3>
<p>A Space Comic</p>
<a href="/story2.html">Read Now</a>
</div>
<div class="book-card">
<img src="./images/coverpage.jpg" alt="Book Cover 2">
<h3>The Quest for the Legendary Anime Artifact</h3>
<p>Devils Promise</p>
<a href="/space.html">Read Now</a>
</div>
<div class="book-card">
<img src="./images/images3/coverpage.jpg" alt="Book Cover 2">
<h3>La La Land</h3>
<p>A College love Story</p>
<a href="/prem.html">Read Now</a>
</div>
<div class="book-card">
<img src="./images/image3/cover.jpg" alt="Book Cover 2">
<h3>Finaly Glory</h3>
<p>A Powerful Football Tale</p>
<a href="/foot.html">Read Now</a>
</div>
<!-- Add more book cards as needed -->
</div>
</body>
</html>