-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.41 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewpoint" content="width-device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/branding/logo.png" type="image/x-icon">
<title>Spell Bind | Home</title>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
>
</script>
<!--Linking the font-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=Shadows+Into+Light&display=swap" rel="stylesheet">
<!--Linked css file-->
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="container">
<audio src="./assets/potter.mp3" autoplay loop></audio>
<!-- <div class="img">
<img src="./assets/landingpage-logo.png" alt="Spell Bind landing banner">
</div> -->
<div class="strt">
<a href="./storyline/index.html">
<button class="btn">
Start
</button>
</a>
</div>
</div>
<!--Linked js file-->
<script src="./scripts/main.js"></script>
</body>
</html>