-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructions.html
59 lines (46 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<!-- css link -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- font link -->
<link href='https://fonts.googleapis.com/css?family=Athiti' rel='stylesheet' type='text/css'>
<!-- js link -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="script.js"></script>
<meta charset="utf-8">
<title>Flash Cards</title>
</head>
<body>
<!-- logo -->
<header> <a href='index.html'>Flash Cards</a></header>
<!-- nav bar -->
<div id="nav">
<ul class="nav">
<li><a href="index.html" id="home">HOME</a></li>
<li><a href="instructions.html" id="instructions">INSTRUCTIONS</a></li>
<li><a href="contact.html" id="contact">CONTACT</a></li>
</ul>
</div>
<!-- opening flash card div -->
<div class="stage">
<div class="card">
<figure class="front">
<p>Steps</p>
<p id='line2'>(Click to Flip)</p>
</figure>
<figure class="back" id="steps">
<p>Please read the following instructions. Send us a question in the contact tab if you are haveing any troubles</p>
<ol>
<li>Shut off ALL distractions. Including Youtube!</li>
<li>Insert your question or term by clicking the "insert question" button.</li>
<li>Insert your answer by clicking the "insert answer" button.</li>
<li>Click below to get started!</li>
</ol>
</figure>
</div>
<!-- begin learning button -->
<a class="getstarted" href="flashcardgame.html">Get Started</a>
</div>
</body>
</html>