-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
73 lines (68 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecommerce Website</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="./style.css">
<style>
body {
font-family: sans-serif;
margin: 0;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="navbar-container">
<input type="checkbox" name="" id="checkbox">
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<ul class="menu-items">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/contact.html">Contact Us</a></li>
<li><a href="/cart.html">Cart</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
<div class="logo">
<img src="#" alt="">
</div>
</div>
</nav>
<div class="contain">
<div class="left">
<h1>We're here</h1>
<p>We welcomes your reviews positive as well as negative.</p>
</div>
<div class="right">
<h1>Let's talk.</h1>
<p>Share your thoughts with us.</p>
<p><a href="mailto:[email protected]" style="text-decoration: none; color: aqua;">[email protected]</a></p>
</div>
</div>
<footer>
<div class="footer-container container">
<div class="content_1">
<h1 style="color: aliceblue;">Payment Options</h1>
<img src="https://i.postimg.cc/Nj9dgJ98/cards.png" alt="cards">
</div>
<div class="content_3">
<h4>More</h4>
<a href="/">Home</a>
<a href="/about.html" target="_blank">About Us</a>
<a href="/cart.html" target="_blank">Cart</a>
<a href="/blog.html" target="_blank">Blog</a>
</div>
</div>
</div>
</div>
</footer>
</body>
<script src="./script.js"></script>
</body>
</html>