|
|
|
@ -2,6 +2,7 @@
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>TIMER</title>
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
@ -10,14 +11,14 @@
|
|
|
|
|
font-size:3em; font-family:monospace;
|
|
|
|
|
}
|
|
|
|
|
input {
|
|
|
|
|
padding:0; border:0; outline:none; background:none;
|
|
|
|
|
font-size:inherit; font-family:monospace; width:8em;
|
|
|
|
|
padding:0; border:0; outline:none; background:none;
|
|
|
|
|
font-size:inherit; font-family:monospace;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div>
|
|
|
|
|
T ‐ <input type="text" id="time" placeholder="hh : mm : ss">
|
|
|
|
|
T ‐ <input type="text" id="time" size="11" placeholder="hh : mm : ss">
|
|
|
|
|
</div>
|
|
|
|
|
<script>
|
|
|
|
|
var input = document.getElementById('time');
|
|
|
|
|