Spaces:
Running
Running
File size: 1,685 Bytes
e54445c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
<!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>© 2025 Game Tools. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html> |