Skip to content

Instantly share code, notes, and snippets.

@ilonacodes
Created April 20, 2020 07:16
Show Gist options
  • Save ilonacodes/8af1a06d68fa8a8d1cbfa8a2474851d3 to your computer and use it in GitHub Desktop.
Save ilonacodes/8af1a06d68fa8a8d1cbfa8a2474851d3 to your computer and use it in GitHub Desktop.
index.html | VanillaJS Implementation
<!-- index.html | VanillaJS Implementation -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dice Rolling Simulator</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app" onclick="roll()">
<div class="dice" data-dots>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="dice" data-dots>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment