setmystatus.com Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SetMyStatus</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>SetMyStatus</h1>
<nav>
<ul>
<li><a href="#status">Set Status</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="status">
<h2>Update Your Status</h2>
<textarea id="statusInput" placeholder="What's on your mind?"></textarea>
<button id="updateStatusBtn">Update Status</button>
<p>Your current status:</p>
<div id="currentStatus">No status set.</div>
</section>
<section id="about">
<h2>About SetMyStatus</h2>
<p>SetMyStatus lets you quickly set and share your current status online.</p>
</section>
</main>
<footer>
<p>© 2025 SetMyStatus.com</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>