-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<title>Rock Paper Scissors</title>
<script src="javascript.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>ROCK PAPER SCISSORS</h1>
<h2>made by pie999</h2>
</header>
<main>
<button id="rock" class="button">rock</button>
<button id="paper" class="button">paper</button>
<button id="scissors" class="button">scissors</button>
<p class="score bold">Player: 0 - Computer: 0</p>
<div class="container"></div>
</main>
</body>
</html>