36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Invention Game Dice</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
|
|
</head>
|
|
<body style="max-width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: left; margin: 1em 5em; padding: 1em; " data-pen-title="Dice">
|
|
<!-- partial:index.partial.html -->
|
|
<!-- <h1 class="header">Invention Game</h1> -->
|
|
<!-- Shows a question mark whilst loading-->
|
|
<div>
|
|
|
|
<img src="https://bit.ly/dice-unknown" id="dice"/>
|
|
<img src="https://bit.ly/dice-unknown" id="dice2"/>
|
|
<img src="https://bit.ly/dice-unknown" id="dice3"/>
|
|
<img src="https://bit.ly/dice-unknown" id="dice4"/>
|
|
<img src="https://bit.ly/dice-unknown" id="dice5"/>
|
|
<img src="https://bit.ly/dice-unknown" id="dice6"/>
|
|
</div>
|
|
<!-- When you click the div, it executes rollThatDice()-->
|
|
<button onclick="rollThatDice()">Roll That Dice</button>
|
|
|
|
|
|
<!-- A link to the roll sound you hear-->
|
|
<audio src="https://bit.ly/dice-sound" id="audio"></audio>
|
|
<!-- partial -->
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|