-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
59 lines (54 loc) · 1.87 KB
/
about.html
File metadata and controls
59 lines (54 loc) · 1.87 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
<!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 Us</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="head" style="height:130vh ;">
<div class="container" >
<div class="navbar">
<div class="logo">
<a href="index.html"><img
src="./images/logo.png"
alt="redstore logo"
style="width: 125px"
/></a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="account.html">Account</a></li>
</ul>
</nav>
<a href="Cart.html"><img src="./images/cart.png" alt="cart" width="25px" height="25px" /></a>
</div>
<div class="about-us">
<div class="about-statement">
<h1>About Us</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae
reprehenderit recusandae deleniti numquam sunt beatae harum magnam
debitis maxime excepturi tempora rerum temporibus officiis repudiandae
neque similique nostrum, odit, est officia eius eum dolore? Laboriosam
ab et reiciendis illum quia consequatur possimus reprehenderit eaque
natus. Consectetur nobis nam dolor explicabo aut quis reprehenderit ea
veritatis! Tempore?
</p>
<button>MORE ABOUT US</button>
</div>
<div class="about-statement">
<img
src="./images/Ecommerce web page-pana.png"
alt="ecommerce handle"
/>
</div>
</div></div>
</body>
</html>