Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions MAX DESIGNS
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Us - What We Do & Why</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0; padding: 0;
background: #f8f9fa;
color: #222;
}
header {
background: #333;
color: #fff;
padding: 2rem 1rem;
text-align: center;
}
main {
max-width: 700px;
margin: 2rem auto;
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
section {
margin-bottom: 2rem;
}
h2 {
color: #3c5aa6;
}
footer {
background: #222;
color: #fff;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>WELCOME TO MAX DESIGNS </h1>
<p>Learn what drives us and how we make a difference</p>
</header>
<main>
<section>
<h2>What We Do</h2>
<p>
<!-- Replace the text below with your own description -->
We provide high-quality designs and solutions to help our clients achieve their goals.
Our team specializes in innovative strategies that drive success and growth.
</p>
</section>
<section>
<h2>Why We Do It</h2>
<p>
<!-- Replace the text below with your own mission/why -->
We believe in making a positive impact. Our mission is to empower individuals and businesses
so they can reach their full potential. Passion, integrity, and collaboration are at the heart of everything we do.
</p>
</section>
</main>
<footer>
&copy; 2025 Our Organization. All rights reserved.
</footer>
</body>
</html>