Files
trinkets/wally/index.html

19 lines
545 B
HTML
Raw Permalink Normal View History

2025-08-27 11:20:20 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WallyKazam Word Quiz</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<p class="score-counter">Score: <span class="player-score">0</span></p>
<h1>WallyKazam Word Quiz</h1>
<img src="wally.webp"></img>
<div class="input-buttons">
<button class="correct">&check;</button> <button class="wrong">&cross;</button>
</div>
2025-08-27 11:20:20 -04:00
<script src="app.js"></script>
</body>
</html>