-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
113 lines (104 loc) · 3.82 KB
/
contact.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
<!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="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://kit.fontawesome.com/a450a33da0.css" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<title> Contact us </title>
</head>
<body style="background-image: url(images/dream-Trading-Card-23.jpg);">
<header class="header">
<a href="home.html" class="logo">Booktopia</a>
<a class="logoimage" href="home.html">
<img class="logoimage" src="images/bb.png" alt="Logo">
</a>
<nav class="nav-items">
<a href="home.html">Home</a>
<a href="Books&Catagories.html">Books&Catagories</a>
<a href="deals.html">Deals</a>
<a href="blog.html">Blog&Events</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<form class="search-form">
<input type="text" placeholder="Search for books">
<button type="submit">Search</button>
</form>
<div class="icons">
<a href="deals.html" class="fas fa-heart"></a>
<a href="Books&Catagories.html" class="fas fa-shopping-cart"></a>
<a href="register.html" class="fas fa-user"></a>
</div>
</nav>
</header>
<main>
<div class="about-section">
<h1>About our customer service </h1>
<p>Book Zone provides easy interface to its customer for purchasing books online.</p>
<p>For any query leave a comment in the Home page comment section. You can also send us email and call us
on Week days.
<br>Thankyou for your patience and hope you had a great shopping here.
</p>
</div>
<br><br><br>
<div class="row">
<div class="column">
<div class="card">
<img src="images\pic-1.jpg" alt="Jane" style="width:100% height=300px">
<div class="container">
<h2>Hugh Mungas</h2>
<p class="titleContact">CEO & Founder</p>
<p>“Be yourself; everyone else is already taken.”</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images\pic-2.jpg" alt="Kane" style="width:100% height=300px">
<div class="container">
<h2>Joe mama</h2>
<p class="titleContact">Art Director</p>
<p>“Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.”</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images\pic-3.jpg" alt="Bane" style="width:100% height=300px;" >
<div class="container">
<h2>Takashi</h2>
<p class="titleContact">Designer</p>
<p>“A room without books is like a body without a soul.”</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</div>
</main>
</body>
<!-- footer section -->
<footer class="footer">
<div class="copy">© 2023 Booktopia.inc</div>
<div class="bottom-links">
<div class="links">
<span>More Info</span>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<div class="links">
<span>Social Links</span>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</footer>
</html>