0% found this document useful (0 votes)
3 views2 pages

Website Code

Uploaded by

saadbalhaj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

Website Code

Uploaded by

saadbalhaj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website Title</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to external CSS file -->
<style>
/* Add inline CSS styles here if needed */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Add more CSS styles as needed */
</style>
</head>
<body>

<header>
<div class="container">
<h1>Your Website</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>

<section class="hero">
<div class="container">
<h2>Welcome to Our Website</h2>
<p>This is a brief description of what your website offers. You can
customize this section to highlight your unique value proposition.</p>
<a href="services.html" class="btn">Explore Our Services</a>
</div>
</section>

<main>
<div class="container">
<section>
<h2>About Us</h2>
<p>This section provides information about your company or
organization. You can include details about your history, mission, values, and team
members.</p>
<a href="about.html" class="btn">Learn More</a>
</section>

<section>
<h2>Our Services</h2>
<p>Here you can showcase the services you offer. Provide descriptions,
pricing information, and any other relevant details to help visitors understand
what you provide.</p>
<a href="services.html" class="btn">View Our Services</a>
</section>
</div>
</main>

<footer>
<div class="container">
<p>&copy; 2024 Your Website. All rights reserved.</p>
</div>
</footer>

</body>
</html>

You might also like