-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 2.98 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<title>Skuffle Test</title>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<!-- Favicon and app icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<base target="_blank"> <!-- This makes every link open in new tab -->
</head>
<body>
<header class="py-5 header-bg text-black">
<div class="container d-flex flex-column align-items-center text-center">
<img src="img/LogoLowRes.png" alt="Skuffle logo" class="header-logo mb-3">
<p class="mb-0">The Chaotic PVP Card Game</p>
</div>
</header>
<nav class="site-nav">
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">☰</button>
<ul id="navMenu">
<li><a class="active" href="index.html" target="_self">Home</a></li>
<li><a href="tracker.html" target="_self">Health Tracker</a></li>
<li><a href="ar.html" target="_self">AR Embeds</a></li>
<li><a href ="https://skufflegame.github.io/NeedleTest/">Image Tracking</a></li>
<li><a href ="about.html" target="_self">About Us</a></li>
</ul>
</nav>
<div class="padd">
<br>
<h1 style="text-align: center;">Welcome!</h1>
<br>
<h3>Have a look at a playtest we did using Tabletop Simulator</h3>
<iframe width= "560" height= "315" src="https://www.youtube.com/embed/uUVDZzgAPpc?si=8EboxPOJF5say-BU"
title="Playest 1 - 5th Feb Snippet" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<h3>Welcome to the Skuffle companion site! Skuffle is a
3-6 free-for-all card game with 6 unique characters and playstyles.</h3>
<br>
</div>
<script>
// navbar logic
document.addEventListener('DOMContentLoaded', function() {
const toggle = document.getElementById('navToggle');
const menu = document.getElementById('navMenu');
toggle.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation();
menu.classList.toggle('open');
});
});
</script>
</body>
</html>