You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
698 B
23 lines
698 B
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>Practice Timer</title>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<section>
|
|
<button type="button" id="start">Start</button>
|
|
<button type="button" disabled id="stop">Stop</button>
|
|
<button type="button" disabled id="reset">Reset</button>
|
|
</section>
|
|
<code></code>
|
|
</main>
|
|
<script src="app.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|