-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 995 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 995 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width" charset="utf-8">
<title>RPS</title>
<script src="main.js" defer></script>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main">
<h1 class="title">Rock Paper Scissors</h1>
<nav class="buttons">
<button type="button" name="rock" class="button rock">Rock</button>
<button type="button" name="paper" class="button paper">Paper</button>
<button type="button" name="scissors" class="button scissors">Scissors</button>
</nav>
<div class="result">
<div class="user border"></div>
<div class="final border"></div>
<div class="computer border"></div>
</div>
</div>
</body>
</html>