mirror of
https://github.com/deepseek-ai/DeepSeek-R1.git
synced 2025-02-23 06:09:00 -05:00
60 lines
1.8 KiB
Plaintext
60 lines
1.8 KiB
Plaintext
<!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>© 2025 Your Business Name. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|