Create website

This commit is contained in:
MUELRASON1 2025-02-14 16:15:37 +00:00 committed by GitHub
parent ef99616100
commit 152c1f3d73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

59
website Normal file
View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Business Name</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Your Business Name</h1>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>Your business description goes here. Describe what you do and what makes you unique.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Service 1: Description</li>
<li>Service 2: Description</li>
<li>Service 3: Description</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2025 Your Business Name. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>