-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (76 loc) · 2.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="cards.png">
<link href="https://fonts.googleapis.com/css2?family=Klee+One&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4e910c6dba.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Study Flash Cards</title>
</head>
<body>
<button id="clear" class="clear btn">
<i class="fa fa-trash"></i> Clear Cards
</button>
<p class="creator">Created by <a href="mailto:chisombiri@gmail.com">Chisombiri</a></p>
<h1>Study Flash Cards
<button id="show" class="btn btn-small">
<i class="fa fa-plus"></i> New Card
</button>
</h1>
<p class="info">Efficient way to study. Click on 'New Card' to add new card.</p>
<p class="info">Click on the Card to show other side.</p>
<div id="cards-container" class="cards">
<!-- <div class="card active">
<div class="inner-card">
<div class="inner-card-front">
<p>What is PHP?</p>
</div>
<div class="inner-card-back">
<p>A programming language</p>
</div>
</div>
</div>
<div class="card ">
<div class="inner-card">
<div class="inner-card-front">
<p>What is PHP?</p>
</div>
<div class="inner-card-back">
<p>A programming language</p>
</div>
</div>
</div> -->
</div>
<div class="navigation">
<button id="previous" class="nav-button">
<i class="fa fa-arrow-left"></i>
</button>
<p id="current"></p>
<button id="next" class="nav-button">
<i class="fa fa-arrow-right"></i>
</button>
</div>
<div id="add-container" class="add-container">
<h1>Add a New Card
<button id="hide" class="btn btn-small btn-ghost">
<i class="fa fa-times"></i>
</button>
</h1>
<div class="form-group">
<label for="question">Question</label>
<textarea id="question" placeholder="Enter a Question"></textarea>
</div>
<div class="form-group">
<label for="answer">Answer</label>
<textarea id="answer" placeholder="Enter the Answer"></textarea>
</div>
<button id="add-card" class="btn">
<i class="fa fa-plus"></i> Add Card
</button>
</div>
<script src="main.js"></script>
</body>
</html>