-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
149 lines (108 loc) · 5.18 KB
/
about.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!-- FontAwsome icon -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>about</title>
</head>
<body>
<!-- ***************Navigation Menu************** -->
<nav class="navbar navbar-expand-md navbar-light" style="background-color: rgb(235, 230, 230);">
<a href="index.html"><img src="./fashion store.png" height="80px" class="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#collapsenavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center" id="collapsenavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link text-black">Home</a>
</li>
<li class="nav-item">
<a href="men.html" class="nav-link text-black">Men</a>
</li>
<li class="nav-item">
<a href="women.html" class="nav-link text-black">Women</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link text-black">About Us</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-black">
<i class="cart fa fa-cart-arrow-down fa-2x" aria-hidden="true"></i>
</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
<!-- ******Sign Up***********8 -->
<!-- <a href="login.html" class="nav-link text-black"> -->
<a href="login.html" style="margin-left: 10px;"
><i class="fa fa-user-circle-o fa-2x" aria-hidden="true"></i>
</a>
</div>
</div>
</nav>
</div>
</nav>
<!-- **********************end********************* -->
<section class="about">
<div class="container">
<h5 class="text-center">About Us</h5>
<p>FANSTORE is where fans can support their favorite influencers through buying their merchandise. FANS can stand out among their friends by wearing their favorite influencer’s merchandise.
We provide custom made apparels and meaningful products so fans can feel much closer to people they look up to.
For Influencers, we provide end to end solutions for merchandising without any risk. Let’s talk!</p>
</div>
</section>
<!-- //////////////Contact Us//////////// -->
<section class="contact">
<div class="container text-center">
<h1>Contact</h1>
<input type="text" placeholder="Your Name" name="name" class="form-control" > <br />
<input type="email" placeholder="E-mail" name="email" class="form-control" > <br />
<textarea name="message" placeholder="Message" rows="4" class="form-control" ></textarea> <br />
<input type="Submit" value="SUBMIT" >
</div>
</section>
<!-- ********************Footer********************** -->
<section class="footer">
<div class="container text-center">
<div class="row">
<div class="col-md-3">
<h1>Useful Links</h1>
<p>Privacy Policy</p>
<p>Terms of Use</p>
<p>Return Policy</p>
<a href="about.html"><p>Contact Us</p></a>
</div>
<div class="col-md-6">
<h1>Follow Us</h1>
<p><i class="fa fa-envelope" aria-hidden="true"></i> fashionstore@gmail.com</p>
<p><i class="fa fa-facebook-official" aria-hidden="true"></i> fashionstore/fb</p>
<p><i class="fa fa-phone-square" aria-hidden="true"></i> 090078201</p>
<p><i class="fa fa-youtube-play" aria-hidden="true"></i> fashion store</p>
</div>
<div class="col-md-3 footer-image">
<h1>Download App</h1>
<img src="./images/playstore.png" alt="">
</div>
</div>
<hr>
<p class="copyright">Made by <i class="fa fa-heart-o"></i> Shahzaib Ekram</p>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>