-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (46 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<!--bootstrap cdn -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- css link -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- font link -->
<link href="https://fonts.googleapis.com/css?family=Cherry+Swash|Swanky+and+Moo+Moo" rel="stylesheet">
<!-- 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">
<link rel="icon" href="icon.png">
<title>Flashcards</title>
</head>
<body>
<!-- logo -->
<header> <a href='' class="hovicon">Flashcards</a></header>
<!-- opening flash card div -->
<div class="stage">
<!-- #card -->
<div class="card">
<!-- <figure> .front -->
<figure class="front">
<div class="flashcard">
<h2></h2>
<p>Welcome!</p>
<p id='line2'>(Click to Flip)</p>
</div>
</figure>
<!-- <figure> .back -->
<figure class="back">
<div class="flashcard">
<p>Click the "Get Started" button below when you are ready to create your own flashcards.</p>
</div>
</figure>
</div>
</div>
<!-- begin learning button -->
<form action="flashcardgame.html">
<input class="btn getstarted" type="submit" name="" value="Get Started" />
</form>
<!-- <a class="getstarted" href="flashcardgame.html">Get Started</a> -->
</body>
</html>