-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (99 loc) · 3.36 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/global.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<title>QuizApp</title>
<script src="./JavaScript/index.js" defer></script>
<script src="./JavaScript/common.js" defer></script>
</head>
<body data-js="body">
<header class="header">
<h1 class="header__title">Quiz App</h1>
</header>
<!-- card 1 -->
<main>
<ul class="card__list" data-js="card__list">
<li>
<article class="card">
<h2>What property flips the axes in flexbox?</h2>
<button class="answer__button">Show Answer</button>
<p class="answer" style="display: none">
The property <code>flex-direction</code> flips the axes in
flexbox.
</p>
<ul class="tag-list">
<li class="tag">#flexbox</li>
<li class="tag">#css</li>
</ul>
<button class="card__bookmark1">
<i class="fas fa-bookmark"></i>
</button>
</article>
</li>
<!-- card 2 -->
<li>
<article class="card">
<h2>
Which CSS property is used to set the space inside the element's
border?
</h2>
<button class="answer__button">Show Answer</button>
<p class="answer" style="display: none">
The property <code>padding</code> is used to set the space inside
the element's border.
</p>
<ul class="tag-list">
<li class="tag">#css</li>
</ul>
<button class="card__bookmark2">
<i class="fas fa-bookmark"></i>
</button>
</article>
</li>
<!-- card 3 -->
<li>
<article class="card">
<h2>Which HTML tags are used to create a table?</h2>
<button class="answer__button">Show Answer</button>
<p class="answer" style="display: none">
The tags <code><table></code>, <code><tr></code>,
<code><td></code>, <code><thead></code>,
<code><tbody></code>, and <code><tfoot></code> are
used to create a table.
</p>
<ul class="tag-list">
<li class="tag">#html</li>
</ul>
<button class="card__bookmark3">
<i class="fas fa-bookmark"></i>
</button>
</article>
</li>
</ul>
</main>
<footer>
<nav class="navigation">
<ul class="navigation__list">
<li class="list__item" active>
<a href="index.html"><i class="fas fa-home fa-2x"></i></a>
</li>
<li class="list__item">
<a href="bookmarks.html"><i class="fas fa-bookmark fa-2x"></i></a>
</li>
<li class="list__item">
<a href="forms.html"><i class="fa-solid fa-plus"></i></a>
</li>
<li class="list__item">
<a href="profile.html"><i class="fas fa-user fa-2x"></i></a>
</li>
</ul>
</nav>
</footer>
</body>
</html>