17 lines
464 B
HTML
17 lines
464 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
<title>Dice Component</title>
|
|
</head>
|
|
<body>
|
|
<h1>Dice Component</h1>
|
|
|
|
<roll-dice></roll-dice>
|
|
<roll-dice>Roll a D6</roll-dice>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|