-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.23 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.23 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">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="/assets/styles/index.css" />
<meta name="description" content="Rock Paper Scissors web game" />
<title>Rock Paper Scissors</title>
</head>
<body>
<nav>
<button class="menu-container">
<div class="menu-icon"></div>
<div class="menu-icon"></div>
<div class="menu-icon"></div>
</button>
</nav>
<main>
<div class="hero">
<img src="/assets/images/hero.png" alt="rock paper scissors" />
<h1>Paper Rock Scissors Game</h1>
</div>
<button><a href="/game-page">Start</a></button>
</main>
<aside id="panel-history">
<h1>History</h1>
<div class="history-score">
<span>Player </span>
<span id="history-player"></span>
<span> - </span>
<span id="history-computer"></span>
<span> Computer</span>
</div>
</aside>
<script type="module" src="/assets/js/index.js"></script>
</body>
</html>