scrimba
Note at 0:00
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:00
AboutCommentsNotes
Note at 0:00
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="index.pack.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="wrapper" class="wrapper">
<div onclick = "roll()" id="dice" class="dice">
<div class="dot 4 5 6"></div>
<div class="dot 2 3"></div>
<div class="dot 4 5 6"></div>
<div class="dot 6"></div>
<div class="dot 1 3 5"></div>
<div class="dot 6" ></div>
<div class="dot 4 5 6"></div>
<div class="dot 2 3"></div>
<div class="dot 4 5 6"></div>
</div>
<div id="facevalue" class="number text"></div>
</div>
<script>
addEventListener('load', (event) => {
roll();
});
</script>
</body>
</html>
Console
/403.html
LIVE