-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (58 loc) · 2.03 KB
/
about.html
File metadata and controls
68 lines (58 loc) · 2.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
<!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">
<title>about</title>
</head>
<style>
div{
margin-top: 70px;
/* margin: auto; */
/* border: 1px solid red; */
margin-left: 100px;
margin-right: 100px;
height: auto;
width: 80%;
/* text-align: center; */
margin-bottom: 50px;
}
div > p{
height: auto;
width: 100%;
font-size:20px;
}
#container{
height: auto;
width: 80%;
}
a{
text-decoration: none;
cursor: pointer;
}
a:hover{
color: blueviolet;
}
</style>
<body>
<div>
<p>Ideakart is a site that gives u an idea about the book you want to buy. We offer a huge collection of books in diverse categories.</p>
<p>We have a user friendly search engine and a quick delivery system. With this we even provide best discounts on our books. You can write to us for any idea or any help you need.</p>
<p>Ideakart is a site that gives u an idea and a platform for the book you want. We offer a huge collection of books in diverse categories.</p>
<p>We have a user friendly search engine and a quick delivery system. With this we even provide best discounts on our books. You can write to us for any idea or any help you need.</p>
</div>
<div id="container">
<p>Get To Know Us</p>
<ul>
<li><a href="About">About</a></li>
<li><a href="Contact">Contact</a></li>
<li><a href="Search">Search</a></li>
<li><a href="Privacy Policy">Privacy Policy</a></li>
<li><a href="Refund Policy">Refund Policy</a></li>
<li><a href="Earn Money Online">Earn Money Online</a></li>
<li><a href="QuickBuyer">QuickBuyer</a></li>
</ul>
</div>
</body>
</html>