mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="./icon.png" type="image/x-icon">
|
|
|
|
<title>Quess Number 1D6</title>
|
|
</head>
|
|
<body>
|
|
<article class="gameBack">
|
|
<h1>Guess The Number!</h1>
|
|
<img src="./6.png" alt="" id="dice">
|
|
<div class="ques">
|
|
<h3 class="que">Quessing:</h3>
|
|
<select id="num">
|
|
<option class="ye" value="1">1</option>
|
|
<option class="ye" value="2">2</option>
|
|
<option class="ye" value="3">3</option>
|
|
<option class="ye" value="4">4</option>
|
|
<option class="ye" value="5">5</option>
|
|
<option class="ye" value="6">6</option>
|
|
</select>
|
|
</div>
|
|
<button onclick="roll()">Roll<br>the<br>Dice!</button>
|
|
</article>
|
|
<script src="main.js"></script>
|
|
<a href="../" id="home"></a>
|
|
</body>
|
|
</html> |