mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
First Dice game; 2048 for mobile partialy; Shadows and custom background in rock paper scissors
This commit is contained in:
31
Games/QuessNumber-1D6/index.html
Normal file
31
Games/QuessNumber-1D6/index.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
<h1>Guess The Number!</h1>
|
||||
<h3>You are: <span id="answear"></span></h3>
|
||||
<img src="./6.png" alt="" id="dice">
|
||||
<div class="ques">
|
||||
<p>Quess: </p>
|
||||
<select id="num">
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
<option value="6">6</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<button onclick="roll()">Roll<br>the<br>Dice!</button>
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user