-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout us.html
More file actions
184 lines (160 loc) · 4.05 KB
/
About us.html
File metadata and controls
184 lines (160 loc) · 4.05 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us - Trade With Us</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f9f9f9;
line-height: 1.6;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
background: #ffffff;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 40px;
margin-right: 10px;
}
nav a {
margin: 0 10px;
font-size: 14px;
color: #333;
font-weight: bold;
text-decoration: none;
}
nav a:hover {
color: #b1236d;
}
.banner {
background: url('pic2.jfif') no-repeat center center/cover;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
color: white;
text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.banner h1 {
font-size: 36px;
}
.container {
max-width: 900px;
margin: 40px auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.container h2 {
color: #b1236d;
margin-bottom: 15px;
text-align: center;
}
.container p {
margin-bottom: 15px;
text-align: justify;
}
.team {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}
.member {
background: #f1f1f1;
padding: 15px;
border-radius: 8px;
text-align: center;
}
.member img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
}
footer {
text-align: center;
font-size: 12px;
color: #777;
padding: 20px 0;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="trade.png" alt="logo">
<span><strong>MAKE YOUR BUSINESS KNOWN</strong></span>
</div>
<nav>
<a href="Home Page.html">Home Page</a>
<a href="About us.html">About Us</a>
<a href="Businesses.html">Businesses</a>
<a href="Contact us.html">Contact Us</a>
<a href="New products.html">New Products</a>
</nav>
</header>
<section class="banner">
<h1>About Us</h1>
</section>
<div class="container">
<h2>Who We Are</h2>
<p>
Welcome to <strong>Trade With Us</strong>!
We are a passionate team dedicated to connecting businesses and customers across different sectors.
Our mission is to empower entrepreneurs, promote innovation, and create opportunities for growth.
</p>
<h2>Our Mission</h2>
<p>
To provide a trusted platform where businesses can showcase their products,
and customers can access reliable, high-quality services at the best value.
</p>
<h2>Our Values</h2>
<p>
We believe in transparency, integrity, and collaboration.
Every partnership we make is built on trust and mutual benefit.
</p>
<h2>Meet Our Team</h2>
<div class="team">
<div class="member">
<img src="ceo.jpg" alt="Team Member 1">
<h3>GODFREY JERRY</h3>
<p>Founder & CEO</p>
</div>
<div class="member">
<img src="jerry.jpg" alt="Team Member 2">
<h3>KAMANYIRE GODFREY</h3>
<p>Marketing Director</p>
</div>
<div class="member">
<img src="member.jpg" alt="Team Member 3">
<h3>KAMANYIRE JERRY</h3>
<p>Business Strategist</p>
</div>
</div>
</div>
<footer>
© 2025 Trade With Us. All Rights Reserved.
</footer>
</body>
</html>