!DOCTYPE3 html
!DOCTYPE3 html
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GREATE USAGE CORPRATE WORLD</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-image: url('C:/Users/HP/Downloads/my
project/pictures/logo.jpg'); /* Replace with actual image URL */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
nav {
background-color: #333;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
cursor: pointer;
}
.container {
padding: 20px;
}
img {
width: 50%;
height: auto;
border-radius: 10px;
margin-top: 20px;
}
footer {
background-color: #333;
color: white;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
.contact-info, .about-info {
display: none;
margin-top: 20px;
}
</style>
<script>
function openHomePage() {
alert("Navigating to Home Page");
}
function toggleAboutInfo() {
var aboutDiv = document.getElementById("about-info");
if (aboutDiv.style.display === "none" || aboutDiv.style.display === "")
{
aboutDiv.style.display = "block";
} else {
aboutDiv.style.display = "none";
}
}
function toggleContactInfo() {
var contactDiv = document.getElementById("contact-info");
if (contactDiv.style.display === "none" || contactDiv.style.display ===
"") {
contactDiv.style.display = "block";
} else {
contactDiv.style.display = "none";
}
}
</script>
</head>
<body>
<nav>
<a href="#" onclick="openHomePage()">Home</a>
<a href="#" onclick="toggleAboutInfo()">About</a>
<a href="#" onclick="toggleContactInfo()">Contact</a>
</nav>
<div class="container">
<h1>Welcome to My Company Greate usage</h1>
<img src="C:\Users\HP\Downloads\my project\pictures\image.jpg" alt="Sample
Image">
<p>This is a grate usage company and its used for the project review.</p>
<footer>
© 2025 My Website. All rights reserved.
</footer>
</body>
</html>