35 lines
479 B
HTML
35 lines
479 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta name = "viewport" content = "width=device-width, initial-scale=1" charset="UTF-8">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
|
|
<title>Lottery</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Ashton's Lottery</h1>
|
|
|
|
<div>
|
|
|
|
<button onclick="refresh()">Play Again!</button>
|
|
|
|
<p id="output">Awaiting player...</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<footer>
|
|
|
|
<script src="js/script.js"></script>
|
|
|
|
</footer>
|
|
|
|
</html>
|