-
Notifications
You must be signed in to change notification settings - Fork 2
/
flashcard.html
46 lines (35 loc) · 1.3 KB
/
flashcard.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
<html>
<head>
<title>Easy Flashcards</title>
<link rel="stylesheet" type="text/css" href="flashcard.css" />
<!-- <link rel="stylesheet" type="text/css" href="flipcard.css" />-->
</head>
<body>
<div id="card" class="center-the-component flip-card">
<div class="flip-card-inner">
<div id="branding">
<p>Easy Flashcards</p>
</div>
<div id="card-front" class="flip-card-front">
<div class="card-content center-the-component">
<h1 id="card-front-title">Heading</h1>
</div>
</div>
<div id="card-back" class="flip-card-back">
<div class="card-content center-the-component">
<p id="card-back-subtitle">Headings are a crucial part of your web page. There are different levels of headings that you can use.</p>
<br />
<div>
<h1><h1></h1>
<h2><h2></h2>
<h3><h3></h3>
<h4><h4></h4>
<h5><h5></h5>
<h6><h6></h6>
</div>
</div>
</div>
</div>
</div>
</body>
</html>