0% found this document useful (0 votes)
37 views3 pages

Program For Front Page HTML

The document provides a basic HTML structure for a website front page, including a header with navigation links, a main section with an 'About Us' introduction, and a footer with copyright information. It links to an external CSS file for styling and a JavaScript file for functionality. The page is designed to be responsive with a viewport meta tag.

Uploaded by

Abuzar Ali
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)
37 views3 pages

Program For Front Page HTML

The document provides a basic HTML structure for a website front page, including a header with navigation links, a main section with an 'About Us' introduction, and a footer with copyright information. It links to an external CSS file for styling and a JavaScript file for functionality. The page is designed to be responsive with a viewport meta tag.

Uploaded by

Abuzar Ali
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/ 3

Here’s a simple HTML, CSS, and JavaScript code snippet for a basic front page of a website:

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>My Website</title>

<link rel="stylesheet" href="[Link]">

</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>

<main>

<section>

<h2>About Us</h2>

<p>This is a brief introduction to our website.</p>

</section>
</main>

<footer>

<p>&copy; 2025 My Website. All rights reserved.</p>

</footer>

<script src="[Link]"></script>

</body>

</html>

You might also like