-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (100 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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<title>Book Buddy</title>
<style>
.image-container {
display: flex;
justify-content: space-between;
}
.image-container img {
width: 200px;
height: 200px;
margin: px;
}
.text-area {
width: 300px; /* Define the width of the area */
height: 150px; /* Define the height of the area */
text-align: center; /* Center-align text horizontally within the area */
padding: 20px;
}
.new{
background-color: #7cb8cc;
width:100%;
}
#button{
text-align: center;
margin-left: 700px;
}
#bookbuddy{
font-size: 40px;
margin-left: 200px;
}
.image10{
width: 100px;
height: 100px;
}
.new #image{
position:relative;
width: 100px;
height: 100px;
left:80px;
top:-100px;
border-radius: 20px;
}
.box{
position:relative;
top:-60px;
}
.commence{
margin: 20px;
}
</style>
</head>
<body>
<div class="new">
<h1 style="font-size:40px;" id="bookbuddy">BOOK
<br>
BUDDY</h1>
<div class="image10">
<img id="image" src="Book.jpg" alt="img">
</div>
<div class ="box">
<p style="text-align:center;font-size:30px;"><b>Dedicated To The Reading Buff</b></p>
<p style="text-align:center;font-size:26;"><b>"Books are like old friends. We exchange them, and in doing so, we exchange a piece of our souls."</b></p>
<a href="Registration.html">
<button type="button" class="btn btn-outline-secondary" id="button"><b>REGISTER NOW</b></button>
</a>
</div>
</div>
<div class="image-container">
<div style="margin-left: 20px;">
<section class="teaser col-1-3">
<h5 style="font-size:20px;margin-left:40px;margin:2px 0;padding: 0;">COMMENCE</h5>
<img src="book1.jpg" alt="Image 1" >
<h3>About The Platform</h3>
<p class="text-area">Joining us from all around the world are over twenty fantastic speakers, here to share their stories.</p>
</section>
</div>
<div>
<section class="teaser col-1-3">
<h5 style="font-size:20px;margin-left:60px;margin:2px 0;padding: 0;">DECISION</h5>
<img src="book3.jpg" alt="Image 2">
<h3>Why To Choose This?</h3>
<p class="text-area">Book exchange platforms often have communities or forums where you can connect with other book enthusiasts. You can share recommendations, discuss books, and build connections with like-minded individuals.</p>
</section>
</div>
<div>
<section class="teaser col-1-3">
<h5 style="font-size:20px;margin-left:70px;margin:2px 0;padding: 0;">BOONS</h5>
<img src="book2.jpg" alt="Image 1" >
<h3>Benefits?</h3>
<p class="text-area">Book exchanges provide access to a wide variety of books across different genres, allowing participants to explore diverse subjects and authors.</p>
</section>
</div>
</div>
</div>
</body>
</html>