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.
21 lines
666 B
21 lines
666 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>
|
|
<button type="button" class="btn-primary">Start</button>
|
|
<button type="button" disabled class="btn-secondary">Stop</button>
|
|
<button type="button" disabled class="btn-danger">Reset</button>
|
|
<h1></h1>
|
|
</main>
|
|
<script src="app.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|