28 lines
No EOL
911 B
HTML
28 lines
No EOL
911 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>zy's Countdown</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<a href="/timer">Stopwatch</a>
|
|
<label for="hours-input">Hours</label><input id="hours-input" type="number" placeholder="0"/>
|
|
<label for="minutes-input">Minutes</label><input id="minutes-input" type="number" placeholder="0"/>
|
|
<label for="seconds-input">Seconds</label><input id="seconds-input" type="number" placeholder="0"/>
|
|
<span id="time">00:00:00:00</span>
|
|
<button id="start">Start</button>
|
|
<button id="reset">Reset</button>
|
|
|
|
</div>
|
|
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
|
|
</html> |