-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact us.html
More file actions
200 lines (168 loc) · 4.16 KB
/
Contact us.html
File metadata and controls
200 lines (168 loc) · 4.16 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact 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('pic3.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: 800px;
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;
}
.contact-info {
margin-bottom: 25px;
text-align: center;
}
.contact-info p {
margin: 5px 0;
}
form {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
form input, form textarea {
margin-bottom: 15px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
width: 100%;
}
form button {
background: #b1236d;
color: white;
border: none;
padding: 15px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
form button:hover {
background: #971a5a;
}
.whatsapp {
margin-top: 20px;
text-align: center;
}
.whatsapp a {
display: inline-block;
background: #25D366;
color: white;
padding: 12px 20px;
border-radius: 5px;
font-weight: bold;
text-decoration: none;
}
.whatsapp a:hover {
background: #1da851;
}
footer {
text-align: center;
font-size: 12px;
color: #777777;
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>Contact Us</h1>
</section>
<div class="container">
<h2>We would love to hear from you</h2>
<div class="contact-info">
<p><strong>Email:</strong> info@tradewithus.com</p>
<p><strong>Phone:</strong> +256 752343900</p>
<p><strong>Location:</strong> Kampala, Uganda</p>
</div>
<form action="mailto:info@tradewithus.com" method="post" enctype="text/plain">
<input type="text" name="name" placeholder="Your Full Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<div class="whatsapp">
<a href="https://wa.me/256752343900" target="_blank">
💬 Chat with us on WhatsApp
</a>
</div>
</div>
<footer>
© 2025 Trade With Us. All Rights Reserved.
</footer>
</body>
</html>