-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructions.html
111 lines (108 loc) · 3.82 KB
/
instructions.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tar Heel Hero</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.1/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Odibee+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="public/assets/css/styles.css">
<link rel="stylesheet" href="public/assets/css/instructions.css">
<!-- remove for production -->
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
</head>
<body>
<div id="main-menu" class="main-menu">
<ul class="serv">
<li class="github"><a href="https://github.com/austinbhale/Tar-Heel-Hero"><img
src="./public/assets/images/GitHub-Mark-64px.png" alt="Github"></a></li>
<li class="title">
<a href="/">
<h1>TaR HeeL HeRO</h1>
</a>
</li>
<li class="instructionsBtn" id="instructions"><a href="/">
<h2>MaiN MeNu</h2>
</a></li>
</ul>
<div class="content-ctr">
<h3>Instructions</h3>
<hr>
<table class="table">
<tr>
<th>Difficulty</th>
<th>Speed</th>
<th>Click or Press Keys</th>
</tr>
<tr>
<td>1-column</td>
<td>Slowest</td>
<td class="keys">
<span>a</span>
</td>
</tr>
<tr>
<td>2-column</td>
<td>Slowest</td>
<td class="keys">
<span>a</span>
<span>s</span>
</td>
</tr>
<tr>
<td>Easy</td>
<td>Slowest</td>
<td class="keys">
<span>a</span>
<span>s</span>
<span>d</span>
</td>
</tr>
<tr>
<td>Medium</td>
<td>Medium</td>
<td class="keys">
<span>a</span>
<span>s</span>
<span>d</span>
<span>f</span>
</td>
</tr>
<tr>
<td>Hard</td>
<td>Fastest</td>
<td class="keys">
<span>a</span>
<span>s</span>
<span>d</span>
<span>f</span>
<span>g</span>
</td>
</tr>
</table>
<br>
<p class="note">The difference in difficulty changes the frequency of note generation.</p>
<br>
<table class="table">
<tr>
<th>Song Mode</th>
<th>Guitar Mode</th>
</tr>
<tr>
<td>Play to your choice of song!</td>
<td>Play your own guitar notes!</td>
</tr>
</table>
<br>
<h3>Gameplay</h3>
<hr>
<div class="video-container">
<iframe width="100%" height="auto" src="https://www.youtube.com/embed/xTvAktLgn-E"
frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</div>
</body>
</html>