-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
109 lines (99 loc) · 3.3 KB
/
Copy pathabout.html
File metadata and controls
109 lines (99 loc) · 3.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="index.css"> <!-- Link to your CSS file for styling -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Poppins:wght@300;500&display=swap" rel="stylesheet">
</head>
<style>
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Style the navigation bar */
nav {
background-color: #1c1032;
color: #ffffff;
padding: 10px 0;
}
nav .logo {
font-size: 24px;
margin: 20px;
font-family: 'Poppins', sans-serif;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline;
margin-right: 80px;
}
nav a {
text-decoration: none;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}
/* Style the main container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f3f3f3; /* Light gray background */
box-shadow: 0 2px 5px rgba(133, 117, 167, 0.87);
border-radius: 5px;
margin-top: 20px;
}
/* Style the "About Us" section */
.aboutText {
text-align: center;
background-color: #42162f4f;
padding: 30px;
border-radius: 5px;
}
.aboutText h1 {
font-size: 36px;
color: #1a1a1a;
margin-bottom: 10px;
font-family: 'Poppins', sans-serif;
}
.aboutText p {
font-size: 18px;
color: #333;
margin-bottom: 10px;
font-family: 'Poppins', sans-serif;
}
</style>
<body>
<div class="container">
<nav>
<div class="logo">
<h1>makemeBLUSH</h1>
</div>
<ul>
<li>
<a href="login.html" id="Login" onclick="Login()">Login</a>
<a href="index.html" id="home" onclick="home()">Home</a>
<a href="shop.html" id="shop" onclick="shop()">Shop</a>
<a id="about" onclick="about()">About</a>
<a id="contact" onclick="contact()">Contact</a>
<i onclick="addItem()" class="fa-sharp fa-solid fa-cart-shopping"></i>
</li>
</ul>
</nav>
<div class="aboutText">
<h1>About Us</h1>
<p>Welcome to makemeBLUSH, where fashion meets inspiration. Our journey began with a simple idea: to make fashion accessible to everyone. We believe that what you wear is an extension of who you are, and we're here to empower you to express your unique style.</p>
</div>
<div class="aboutus">
<div class="dumiText">
<h1>Who We Are?</h1>
<p>We are a team of fashion enthusiasts dedicated to curating the latest trends, from elegant classics to street-style chic. Our mission is to provide you with high-quality, affordable fashion that inspires confidence and self-expression.</p>
</div>
</div>
</div>
</body>
</html>