Anthony / index.html
HenzHosting's picture
Upload 3 files
e54445c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anthony Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Anthony web app</h1>
</header>
<nav>
<ul>
<li><a href="#freefire">Anthony life style</a></li>
<li><a href="#codm">Anthony biography</a></li>
<li><a href="#pubg">Anthony Religion</a></li>
<li><a href="#gta">Anthony sport</a></li>
<li><a href="#more">Anthony hobbies</a></li>
</ul>
</nav>
<main>
<section id="freefire">
<h2>Anthony life style</h2>
<p>Anthony love playing ball.</p>
<button onclick="downloadTool('Free Fire')">Download</button>
</section>
<section id="codm">
<h2>COD Mobile Tools</h2>
<p>Download and instructions for COD Mobile tools.</p>
<button onclick="downloadTool('COD Mobile')">Download</button>
</section>
<section id="pubg">
<h2>PUBG Tools</h2>
<p>Download and instructions for PUBG tools.</p>
<button onclick="downloadTool('PUBG')">Download</button>
</section>
<section id="gta">
<h2>Tools</h2>
<p>Download and instructions for GTA tools.</p>
<button onclick="downloadTool('GTA')">Download</button>
</section>
<section id="more">
<h2>More Games</h2>
<p>Coming soon...</p>
</section>
</main>
<footer>
<p>&copy; 2025 Game Tools. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>