-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 1.11 KB
/
index.html
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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./rock-paper-scissors.js" defer></script>
<link rel="stylesheet" href="./style.css">
<title>Rock Paper Scissors | The Odin Project</title>
</head>
<body>
<nav>
<h1>Rock Paper Scissors</h1>
</nav>
<div style="">
</div>
<div style ="">
</div>
<ul class="uList">
<li><img id="rock" src="./images/rock.png" alt="rock button image" width="130px" height="auto"></li>
<li><img id="paper" src="./images/paper.png" alt="paper button image" width="130px" height="auto"></li>
<li><img id="scissors" src="./images/scissors.png" alt="scissors button image" width="130px" height="auto"></li>
</ul>
<div class="footer">
<div>Made by higgsboson909</div>
<a href="https://github.com/higgsboson909" target="_blank" rel="noopener noreferrer"><img src="./images/pngwing.com.png" rel="github-logo" width="18px" height="auto"></a>
</div>
</body>
</html>