-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
97 lines (95 loc) · 4.32 KB
/
categories.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
<!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="stylesheet" href=https://breezeui.netlify.app/styles/breezeUI.css>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
<title>Quiz App | Categories</title>
</head>
<body>
<header class="flex-space-btwn flex-center header-container">
<div class="flex-center">
<h3 class="text-highlight">HopScotch</h3>
</div>
<button class="menu-btn"><i class="fa fa-bars"></i></button>
<nav class="nav-pill-container flex-layout flex-center flex-space-btwn">
<a class="mg-rl-1 txt-md a-link nav-link" href="index.html">Home</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="rules.html">Rules</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="categories.html">Categories</a>
<button id="toggle-btn" class="mg-rl-1 btn-img" value="dark-mode"><img src="assets/images/dark_mode.svg"></a>
</nav>
</header>
<div class="flex-column flex-center">
<h3 class="mg-t-1">Categories</h3>
<div class="flex-layout flex-center category-container">
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/science.png"
alt="science icon">
<span>Science</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/sports.png"
alt="sports icon">
<span>Sports</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/music.png"
alt="music icon">
<span>Music</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/travel.png"
alt="travel icon">
<span>Travel</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/science.png"
alt="science icon">
<span>Science</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/sports.png"
alt="sports icon">
<span>Sports</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/music.png"
alt="music icon">
<span>Music</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/travel.png"
alt="travel icon">
<span>Travel</span>
</div>
</a>
<a class="txt-md" href="rules.html">
<div class="flex-col-space-btwn category-card mg-1">
<img class="category-img" src="assets/images/science.png"
alt="science icon">
<span>Science</span>
</div>
</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>