create website
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
<link rel="stylesheet" href="styles.css"> <!-- External CSS file -->
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h2>About Me</h2>
<p>I am a web developer passionate about creating beautiful and functional websites.</p>
</section>
<section>
<h2>My Services</h2>
<ul>
<li>Website Design</li>
<li>Front-end Development</li>
<li>Responsive Design</li>
</ul>
</section>
<footer>
<p>© 2023 My First Website. All rights reserved.</p>
</footer>
<script src="
Comments
Post a Comment