<!– PAGE BACKGROUND –>
<div style=”background: #f5f7fa; min-height: 100vh; padding: 40px 20px;”>

<!– HEADLINE –>
<h1 style=”text-align: center; font-size: 42px; font-weight: 700; margin-bottom: 10px; font-family: Arial, sans-serif;”>
Real Time Clock
</h1>

<!– SUBHEADLINE –>
<p style=”text-align: center; font-size: 20px; color: #555; margin-bottom: 40px; font-family: Arial, sans-serif;”>
Always accurate. Always live. Always updating.
</p>

<!– CLOCK –>
<div id=”clock-container” style=”text-align: center; margin-top: 20px;”>
<div id=”clock” style=”font-size: 90px; font-weight: bold; font-family: ‘Roboto Mono’, monospace;”></div>
</div>

<script>
function updateClock() {
const now = new Date();
const timeString = now.toLocaleTimeString(‘en-AU’, { hour12: false });
document.getElementById(‘clock’).textContent = timeString;
}
setInterval(updateClock, 1000);
updateClock();
</script>

<!– OPT-IN BOX –>
<div style=”max-width: 500px; margin: 50px auto 0; background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1);”>
<h2 style=”text-align: center; font-size: 24px; margin-bottom: 10px; font-family: Arial, sans-serif;”>
Get Updates & New Tools
</h2>
<p style=”text-align: center; color: #666; margin-bottom: 20px; font-family: Arial, sans-serif;”>
Join our list to get new features and tools as soon as they launch.
</p>

<form>
<input type=”email” placeholder=”Enter your email”
style=”width: 100%; padding: 12px; font-size: 16px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 6px;”>
<button type=”submit”
style=”width: 100%; padding: 14px; background: #0073ff; color: white; font-size: 18px; border: none; border-radius: 6px; cursor: pointer;”>
Subscribe
</button>
</form>
</div>

</div>