Untitled
unknown
plain_text
a year ago
647 B
11
Indexable
<!DOCTYPE html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Slot Machine</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Slot Machine</h1>
<div class="slot-machine">
<div class="reel" id="reel1"></div>
<div class="reel" id="reel2"></div>
<div class="reel" id="reel3"></div>
</div>
<button id="spinButton">Spin</button>
<p id="result"></p>
</div>
<script src="script.js"></script>
</body>
</html>Editor is loading...
Leave a Comment