-
Notifications
You must be signed in to change notification settings - Fork 10
/
aboutUs.html
96 lines (88 loc) · 2.55 KB
/
aboutUs.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
<!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>Mens Fashion Store</title>
<link rel="stylesheet" href="styleSheet.css">
</head>
<body>
<logo class="logo">
<center>
<img src="images\logo.png" alt="Check URL" width="100px" height="100px">
<big>
Mens Fashion Store
</big>
</center>
</logo>
<nav class="menu-bar">
<hr>
<ul>
<li class="active">
<a href="index.html">
Home
</a>
</li>
<li>
<a href="itemCatalog.html">
Item Catalog
</a>
</li>
<li>
<a href="viewCart.html">
View Cart
</a>
</li>
<li>
<a href="login.html">
Login
</a>
</li>
<li>
<a href="signup.html">
Sign Up
</a>
</li>
<li>
<a href="logout.html">
Logout
</a>
</li>
<li>
<a href="aboutUs.html">
About Us
</a>
</li>
</ul>
<hr>
</nav>
<main>
<center>
<h1>
About Us:
</h1>
<p>
Established in 2015, Mens Fashion Store is a place created for the spirited youth in the world who enjoy indulging in the latest lifestyle trends; be it style, look fashionable, as a means to express themselves.
</p>
<p>
We has always been able to provide the best in fashion through a unique and flexible model that is open to adapting to the constant changes that occur during a season. At the same time, we are able to respond to key trends and develop them into wearable
fashion in the shortest possible time for a collection that is fun, vibrant, and expressive.
</p>
</center>
</main>
<footer class="footer">
<Center>
<p>
copy@right<br> All Rights Reserved
</p>
</Center>
<h1>
Contact Us:<br>
</h1>
<h4>
email: menfashion@gmail.com<br>
</h4>
</footer>
</body>
</html>