20 lines
501 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stopwatch</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Stopwatch</h1>
<p id="time">00:00:000</p>
<input type="button" id="start" value="Start">
<input type="button" id="stop" value="Stop">
<input type="button" id="reset" value="Reset">
<script src="stopwatch.js"></script>
</body>
</html>