-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 3.5 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 3.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://dubiousbooks.com/assets/favicon.ico" type="image/x-icon">
<!-- Optional: Support for PNG or other formats -->
<link rel="icon" href="https://dubiousbooks.com/assets/favicon.png" type="image/png">
<link rel="apple-touch-icon" href="https://dubiousbooks.com/assets/apple-touch-icon.png"> <!-- For Apple devices -->
<title>The Dubious Books of Adventure</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
background: url('https://mackain.github.io/dnd-tools/assets/max-suleimanov-dv-134.jpg') no-repeat center center fixed;
background-size: cover;
}
</style>
</head>
<body class="flex flex-col items-center justify-center min-h-screen">
<div class="container mx-auto p-4 text-center">
<!-- Logo! -->
<div class="mb-6">
<img src="https://mackain.github.io/dnd-tools/assets/title.png" alt="Logo" class="mx-auto w-120 h-auto">
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 text-center">
<!-- Book 1 -->
<div class="bg-white bg-opacity-50 p-6 shadow-lg rounded-lg">
<h2 class="text-lg font-semibold mb-2">Book of Dungeons</h2>
<img src="https://mackain.github.io/dnd-tools/assets/dungeons.png" alt="Book 1" class="mx-auto mb-4 w-60 h-80 object-contain">
<div class="space-y-2">
<a href="https://www.drivethrurpg.com/en/product/513329/the-dubious-book-of-dungeons" class="block bg-blue-600 text-white text-lg font-medium py-2 px-4 rounded hover:bg-blue-700">Paperback & Free Download</a>
<a href="https://mackain.github.io/dnd-tools/dungeon" class="block bg-blue-600 text-white text-lg font-medium py-2 px-4 rounded hover:bg-blue-700">Interactive Version!</a>
</div>
</div>
<!-- Book 2 -->
<div class="bg-white bg-opacity-50 p-6 shadow-lg rounded-lg">
<h2 class="text-lg font-semibold mb-2">Book of Quests</h2>
<img src="https://mackain.github.io/dnd-tools/assets/quests.png" alt="Book 3" class="mx-auto mb-4 w-60 h-80 object-contain">
<div class="space-y-2">
<a href="https://www.drivethrurpg.com/en/product/514251/The-Dubious-Book-of-Quests" class="block bg-blue-600 text-white text-lg font-medium py-2 px-4 rounded hover:bg-blue-700">Paperback & Free Download</a>
<a href="https://mackain.github.io/dnd-tools/quest" class="block bg-blue-600 text-white text-lg font-medium py-2 px-4 rounded hover:bg-blue-700">Interactive Version!</a>
</div>
</div>
<!-- Book 3 -->
<div class="bg-white bg-opacity-50 p-6 shadow-lg rounded-lg">
<h2 class="text-lg font-semibold mb-2">Book of Characters</h2>
<img src="https://mackain.github.io/dnd-tools/assets/npcs.png" alt="Book 2" class="mx-auto mb-4 w-60 h-80 object-contain">
<div class="space-y-2">
<p>TBA</p>
</div>
</div>
</div>
</div>
<!-- Copyright Footer -->
<footer class="w-full p-4 text-center text-white text-sm">
Background: Waterfalls by <a href="https://www.artstation.com/refiend">Max Suleimanov</a>
</footer>
</body>
</html>