-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 740 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (25 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Daniel">
<meta name="description" content="Playing a game with a dice">
<title>Dice page</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h1>Refresh Me</h1>
<div class="dice">
<p>Player1</p>
<img class="img1" src="images/dice1.png" alt="dice1">
</div>
<div class="dice">
<p>Player2</p>
<img class="img2"src="images/dice2.png" alt="dice2">
</div>
</div>
<script src="js/javascript.js"></script>
</body>
</html>