!DOCTYPE HTML
!DOCTYPE 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 CORPORATE 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');
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;
background-color: rgba(255, 255, 255, 0.8);
display: inline-block;
margin-top: 50px;
border-radius: 10px;
}
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");
aboutDiv.style.display = (aboutDiv.style.display === "none" ||
aboutDiv.style.display === "") ? "block" : "none";
}
function toggleContactInfo() {
var contactDiv = document.getElementById("contact-info");
contactDiv.style.display = (contactDiv.style.display === "none" ||
contactDiv.style.display === "") ? "block" : "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 Greate Usage</h1>
<img src="C:/Users/HP/Downloads/my project/pictures/image.jpg" alt="Sample
Image">
<p>Greate Usage is a company focused on project reviews.</p>
<footer>
© 2025 Greate Usage Corp. All rights reserved.
</footer>
</body>
</html>
ORGINAL