Skip to content

Commit a4a39ce

Browse files
authored
Create MAX DESIGNS
1 parent 83026bb commit a4a39ce

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

MAX DESIGNS

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>About Us - What We Do & Why</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 0; padding: 0;
11+
background: #f8f9fa;
12+
color: #222;
13+
}
14+
header {
15+
background: #333;
16+
color: #fff;
17+
padding: 2rem 1rem;
18+
text-align: center;
19+
}
20+
main {
21+
max-width: 700px;
22+
margin: 2rem auto;
23+
background: #fff;
24+
padding: 2rem;
25+
border-radius: 8px;
26+
box-shadow: 0 4px 24px rgba(0,0,0,0.07);
27+
}
28+
section {
29+
margin-bottom: 2rem;
30+
}
31+
h2 {
32+
color: #3c5aa6;
33+
}
34+
footer {
35+
background: #222;
36+
color: #fff;
37+
text-align: center;
38+
padding: 1rem;
39+
font-size: 0.9rem;
40+
}
41+
</style>
42+
</head>
43+
<body>
44+
<header>
45+
<h1>WELCOME TO MAX DESIGNS </h1>
46+
<p>Learn what drives us and how we make a difference</p>
47+
</header>
48+
<main>
49+
<section>
50+
<h2>What We Do</h2>
51+
<p>
52+
<!-- Replace the text below with your own description -->
53+
We provide high-quality designs and solutions to help our clients achieve their goals.
54+
Our team specializes in innovative strategies that drive success and growth.
55+
</p>
56+
</section>
57+
<section>
58+
<h2>Why We Do It</h2>
59+
<p>
60+
<!-- Replace the text below with your own mission/why -->
61+
We believe in making a positive impact. Our mission is to empower individuals and businesses
62+
so they can reach their full potential. Passion, integrity, and collaboration are at the heart of everything we do.
63+
</p>
64+
</section>
65+
</main>
66+
<footer>
67+
&copy; 2025 Our Organization. All rights reserved.
68+
</footer>
69+
</body>
70+
</html>

0 commit comments

Comments
 (0)