You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/10-dice-game/index.html

35 lines
796 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul><li>
DICE GAME!
</li></ul>
</nav>
<div class="head">
<h1>Refresh Me</h1>
</div>
<div class="container">
<div class="dice">
<img src="images\dice6.png" alt="">
<h1 >Player 1</h1>
</div>
<div class="dice">
<img src="images\dice6.png" alt="">
<h1 >Player 2</h1>
</div>
</div>
<script src="script.js" charset="utf-8"></script>
</body>
</html>