Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body { background: #000; color: #fff; text-align: center; font-family: sans-serif; height: 100vh; display: flex; flex-direction: column; justify-content: center; margin: 0; }
#timer { font-size: 70px; color: #00ff00; margin: 20px; }
input { background: #222; border: 2px solid #00ff00; color: #fff; padding: 10px; font-size: 20px; width: 80px; text-align: center; border-radius: 5px; }
button { background: #00ff00; color: #000; border: none; padding: 20px 40px; font-size: 22px; font-weight: bold; margin-top: 30px; border-radius: 50px; }
</style>
002B0225