-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🃏 Ultimate Drinking Cards 🍺</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header-bar">
<a href="https://github.com/kay-who-codes/Ultimate-Drinking-Cards" class="header-link">🃏 Ultimate Drinking Cards 🍺</a>
<div class="dropdown">
<button class="dropbtn" onclick="toggleDropdown()">More Apps</button>
<div class="dropdown-content" id="dropdownMenu">
<a href="https://kay-who-codes.github.io/Cards-Against-Humanity/">⬜ Cards Against Humanity</a>
<a href="https://kay-who-codes.github.io/Ultimate-Drinking-Cards">🍻 Ultimate Drinking Cards</a>
<a href="https://kay-who-codes.github.io/Kings-Cup/">🍺 Kings Cup</a>
<a href="https://kay-who-codes.github.io/Question-Cards/">❓ Question Cards</a>
<a href="https://kay-who-codes.github.io/Daily-Comic-Strips/">🗞️ Comic Strips</a>
<a href="https://kay-who-codes.github.io/Soundboard/">🔊 Soundboard</a>
<a href="https://kay-who-codes.github.io/Greek-Quiz/">🇬🇷 Greek Quiz</a>
<a href="https://kay-who-codes.github.io/HTML-Displayer/">👁️ HTML Viewer</a>
<a href="https://kay-who-codes.github.io/Calendar-Holiday-Countdown/">📅 Calendar Countdown</a>
<a href="https://kay-who-codes.github.io/Skint-Countdown/">⌛ Skint Countdown</a>
<a href="https://kay-who-codes.github.io/Song-Inspirator/">🎶 Song Inspirator</a>
<a href="https://kay-who-codes.github.io/Bible-Completion-Calculator/">✝️ Bible Completion Calculator</a>
<a href="https://kay-who-codes.github.io/Random-Bible-Verse/">✝️ Random Bible Verses</a>
<a href="https://kay-who-codes.github.io/Random-Numbers/">🔢 Random Number Generator</a>
<a href="https://kay-who-codes.github.io/Coinflip/">🪙 Coinflip</a>
</div>
</div>
</header>
<div id="app">
<div class="card" id="coverCard">
<div class="card-front">Ultimate Drinking Cards</div>
<div class="card-back"></div>
</div>
<button id="resetButton" hidden>Refresh</button>
</div>
<!-- Container for the 'Show Rules' button placed at the bottom -->
<div id="rulesButtonContainer">
<a href="#" id="showRulesLink">View Game Rules</a>
</div>
<!-- Modal for displaying rules -->
<div id="rulesModal" class="modal">
<div class="modal-content">
<div id="rulesText"></div>
<button id="closeRulesButton">Close Rules</button>
</div>
</div>
<!-- Footer with the credit link -->
<footer id="footer">
Made by <a href="https://linktr.ee/kaywhocreates" target="_blank" rel="noopener noreferrer">Kay 🧡</a>
</footer>
<script src="script.js"></script>
</body>
</html>