-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.55 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Your description goes here">
<meta name="keywords" content="Rock, Paper, Scissors, Game">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock Paper Scissors</title>
<!-- external CSS link -->
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Rock Paper Scissors</h1>
<h2>Bring it On!</h2>
<div class="container">
<div class="choice player"><img id="rock" src="images/rock.png"></div>
<div class="choice player"><img id="paper" src="images/paper.png"></div>
<div class="choice player"><img id="scissor" src="images/scissor.png"></div>
</div>
<h2 class="result"></h2>
<img id="logo" src="images/rps.png" alt="">
<button id="restart" type="button" name="button">Restart</button>
<div class="container">
<div class="choice"><img class="bot" id="bot-rock" src="images/rock.png"></div>
<div class="choice"><img class="bot" id="bot-paper" src="images/paper.png"></div>
<div class="choice"><img class="bot" id="bot-scissor" src="images/scissor.png"></div>
</div>
<div class="portfolio">
<a href="https://bobvawter.netlify.app/" class="button">Portfolio</a>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>