0% found this document useful (0 votes)
9 views

HTML

The document contains HTML code for a basic website with a menu tab and content sections for home, about, services, and contact pages.

Uploaded by

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

HTML

The document contains HTML code for a basic website with a menu tab and content sections for home, about, services, and contact pages.

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website with Menu Tab</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="menu">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>

<!-- Content for the home page -->


<div class="content">
<h1>Welcome to our website!</h1>
<p>This is the home page content. You can add any text, images, videos, or other elements
here to introduce your website to visitors.</p>
</div>

<!-- Other content of your website -->

</body>
</html>

You might also like