-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 2.02 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rock Paper Scissors</title>
<meta name="description" content="The Rock-Paper-Scissors game. Play online!">
<meta name="author" content="Sergey Zelenov">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="terminal">
<div class="top-menu">
<div class="button close"></div>
<div class="button minimize"></div>
<div class="button zoom"></div>
<span class="title">Rock Paper Scissors</span>
</div>
<div class="screen-container">
<div class="screen">
<div class="line">
<p class="text welcome loading">$ ./rock-paper-scissors new_game</p>
</div>
<div class="line">
<p class="text system-message white greeting">Hello from Rock Paper Scissors game. Please type your move.</p>
</div>
<div class="line">
<p class="text initial user-input">> </p>
</div>
</div>
</div>
<div class="mobile">
<div class="controls">
<div class="control" data-id="rock">Rock</div>
<div class="control" data-id="paper">Paper</div>
<div class="control" data-id="scissors">Scissors</div>
</div>
</div>
</div>
</div>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125652835-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125652835-1');
</script>
<script src="js/levenshtein.min.js"></script>
<script type="module" src="js/main.mjs"></script>
</body>
</html>