This repository was archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.28 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.28 KB
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
42
43
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rock, Paper, Scissors!</title>
<script src="script\script.js" charset="utf-8"></script>
<link rel="stylesheet" href="style\style.css">
</head>
<body>
<header>
<h1>Rock Paper Scissors</h1>
<!--<h2>User Score: <a id="us">0</a></h2>-->
<!--<h2>Computer Score: <a id="cs">0</a></h2>-->
<div id="scoreBlock">
<h1 id="us"><a style="font-size:0.7rem;">User Score</a><br>0</h1>
<h1 id="cs"><a style="font-size:0.7rem;">Computer Score</a><br>0</h1>
</div>
</header>
<div id="userChoices">
<img onclick="play('rock')" src="images\rock.png" alt="Rock">
<img onclick="play('paper')" src="images\paper.png" alt="Paper">
<img onclick="play('scissors')" src="images\scissors.png" alt="Scissors">
</div>
<h3 id="more_results"></h3>
<h3 id="tr"></h3>
<footer>
<img onclick= 'openInNewTab("https://github.com/samg11");' style="float:right;" id="github_logo" src="images\github_logos\GitHub-Mark-Light-64px.png" alt="Github">
<center>
<h3 class='c'>Rock Paper Scissors</h3>
<h4 class='c'>by Sam Girshovich</h4>
</center>
<br>
<p style="float:left;">© Sam Girshovich 2020</p><br>
<p style="float:left;"></p>
</footer>
</body>
</html>
</footer>
</body>
</html>