34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="app.css"/>
|
|
<title>Number Slide</title>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="controls">
|
|
<h1 id="time">00:00.<small>00</small></h1>
|
|
<button id="shuffle" disabled>Shuffle</button>
|
|
</div>
|
|
<main id="stage">
|
|
<section>
|
|
<button id="1" class="c1 r1">1</button>
|
|
<button id="2" class="c2 r1">2</button>
|
|
<button id="3" class="c3 r1">3</button>
|
|
<button id="4" class="c1 r2">4</button>
|
|
<button id="5" class="c2 r2">5</button>
|
|
<button id="6" class="c3 r2">6</button>
|
|
<button id="7" class="c1 r3">7</button>
|
|
<button id="8" class="c2 r3">8</button>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
2021 © <a href="https://johnespiritu.dev">John Espiritu</a>
|
|
</footer>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |