-
Notifications
You must be signed in to change notification settings - Fork 0
/
quartet.html
54 lines (49 loc) · 2.17 KB
/
quartet.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wildlife Quartet Cards</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/fonts/stylesheet.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<div id="wrapper">
<header>
<nav class="border-bottom-white">
<ul>
<div id="logo">Wilde Tiere</div>
<li><a href="index.html">Überblick</a></li>
<li><a class="active-link">Quartett Karten</a></li>
</ul>
</nav>
</header>
<main>
<div id="sorting-buttons">
<span>Sortiere nach: </span>
<button id="sort-groups" class="active">Gruppen</button>
<button id="sort-max_weight">Max Gewicht</button>
<button id="sort-max_length">Max Länge</button>
<button id="sort-max_age">Max Alter</button>
<button id="sort-top_speed">Max Geschwindigkeit</button>
<button id="sort-litter_size">Wurfgröße</button>
<button id="sort-deaths">Tödliche Vorfälle</button>
<button id="sort-intelligence">Intelligenz</button>
</div>
<!-- Cards will be dynamically inserted here -->
<div id="cards-container"></div>
<a href="#" id="back-to-top" class="top"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-chevron-up">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M6 15l6 -6l6 6" />
</svg></a>
</main>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js/animaldata.js"></script>
<script src="js/main.js"></script>
<script src="js/nav.js"></script>
</body>
</html>