30 lines
621 B
HTML
30 lines
621 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Dice Games | Seven Seas</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<a href="index.html">🏴☠️ Seven Seas</a>
|
|
<p class="description">The travel app for pirates</p>
|
|
</nav>
|
|
|
|
<h1>Dice Games</h1>
|
|
|
|
<p>Roll some dice, have some fun!</p>
|
|
|
|
<div class="dice-game">
|
|
<roll-dice></roll-dice>
|
|
<roll-dice></roll-dice>
|
|
</div>
|
|
|
|
|
|
<script src="dice.js"></script>
|
|
|
|
</body>
|
|
</html>
|