-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
96 lines (86 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Reach</title>
<style>
body {
background-color: #FFFFFF;
color: #333333;
font-family: Arial, sans-serif;
}
header {
padding: 20px;
text-align: center;
position: relative;
}
h1 {
color: #333333;
margin: 0;
}
.logo {
position: absolute;
top: 10px;
left: 10px;
width: 60px;
height: 60px;
background-image: url('https://i.pinimg.com/564x/dc/e9/86/dce986a0f0ca0abe5d5f3bda588ac803.jpg');
background-repeat: no-repeat;
background-size: contain;
}
.header-buttons {
margin-top: 10px;
}
.header-buttons a {
display: inline-block;
margin-right: 10px;
padding: 8px 16px;
background-color: #CCCCCC;
color: white;
text-decoration: none;
transition: background-color 0.3s ease;
}
.header-buttons a:hover {
background-color: #999999;
}
main {
padding: 20px;
text-align: center;
}
.about-container {
display: inline-block;
width: 80%;
max-width: 600px;
margin: 20px;
padding: 10px;
background-color: white;
border: 1px solid #CCCCCC;
}
.about-text {
font-size: 16px;
text-align: left;
}
</style>
</head>
<body>
<header>
<h1>About Us</h1>
<div class="logo"></div>
<div class="header-buttons">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact Us</a>
</div>
</header>
<main>
<div class="about-container">
<div class="about-text">
<p>Hi, we're a small streetwear brand based in Luxembourg. We strive to ensure every customer is satisfied with their purchases while also prioritizing the well-being of the planet.</p>
<p>At Reach, we value both our products and the environment. That's why all our products are created with utmost care for the environment. We take our responsibility seriously and ensure that our clothing is responsibly sourced throughout the entire supply chain, right from the beginning.</p>
<p>We have currently released two lines of products, and with enough support, we aspire to build not only a sustainable brand but also contribute to a sustainable planet.</p>
</div>
</div>
</main>
</body>
</html>