-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathHome page for a book store
94 lines (91 loc) · 1.9 KB
/
Home page for a book store
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
<!DOCTYPE html>
<html>
<head>
<title>HOME</title>
<style>
h1{
text-align:center;
color:red;
background-color:lightblue;
font-size:40px;
}
.Top-section{
word-spacing:5cm;
margin-left: 10px;
background-color:yellow;
}
.Top-section p{
font-size:25px;
background-color: lightgreen;
}
#info p{
font-weight:bold;
color:brown ;
font-family: sans-serif;
background-color: yellow;
margin-top:20px;
margin-right: 100px;
text-align: center;
padding:10px;
word-spacing:0cm;
float: right;
width:50%;
}
a{
color: blue;
}
a:hover{
color:black;
}
#sidebar{
font-size:27px;
color:blue;
background-color:pink;
border:10px inset red;
width:20%;
height:750px;
padding-top:30px;
padding-left:30px;
box-sizing: border-box;
}
#contact{
word-spacing:0cm;
}
</style>
</head>
<body>
<h1>BOOK STORE</h1>
<div class="Top-section">
<p>
<a href="homepage.html">HOME</a>
<a href="registration.html">Register</a>
<a href="login.html">Login</a>
<a href="catalogue.html">Catalogue</a>
<a href="cart.html">Cart</a></p>
<hr>
<div id="info">
<p>Welcome to the world's best online Book store. </p>
<p>The best place for the readers,writers and learners.</p>
<p>You can register to our website if you are a new user or login if you are registered and you will be ready to buy the books you want to read.</p>
<p style="text-align: center; background-color:blue;color:white;font-weight: bold">If you have any queries,you can contact us through:
<a style="color: white" href="http:[email protected]" target="blank">[email protected]</a></form></p>
<p style="text-align: center; background-color:blue;color:white;font-weight: bold">Contact No.: 9653791345</p>
</div>
<div id="sidebar">
<a href="catalogue.html">CSE</a>
<br>
<br>
<br>
<a href="ece.html">ECE</a>
<br>
<br>
<br>
<a href="civil.html">CIVIL</a>
<br>
<br>
<br>
<a href="mech.html">MECHANICAL</a>
</div>
</div>
</body>
</html>