-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (71 loc) · 3.68 KB
/
Copy pathindex.html
File metadata and controls
77 lines (71 loc) · 3.68 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
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Overpass:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grandstander&display=swap" rel="stylesheet">
<title>Rollerskate Spots Australia</title>
<div class="logo">
<p><a href="index.html">Rollerskate Spots Australia</a></p>
</div>
<div id="nav-placeholder"></div>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$.get("homeNav.html", function(data){
$("#nav-placeholder").replaceWith(data);
document.getElementById("home").className = "active";
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-178249401-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-178249401-1');
</script>
</head>
<body>
<div id="welcomeContainer">
<div id="welcome">
<h1 class="ml7">
<span class="text-wrapper">
<span class="letters"><h1>Welcome to Rollerskate Spots Australia</h1></span>
</span>
</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="script.js"></script>
<h3>A site dedicated to sharing skate spots for rollerskaters (and rollerbladers) in Australia</h3>
</div>
</div>
<div id="submissions">
<br>
<br>
<div id="submitASpot">
<h2 id="SubVerUpTitle"><a target="_blank" href="https://forms.gle/ZhQ1GhUodmKtjgfk9">Submit a Skate Spot</a></h2>
<p>Fill out the Google Form linked <a href="https://forms.gle/ZhQ1GhUodmKtjgfk9">here</a> to add a Skate Spot! The more detail and pictures you can provide the better!</p>
</div>
<br>
<div id="verifyASpot">
<h2 id="SubVerUpTitle"><a target="_blank" href="https://forms.gle/FkDWGHKYTDkA5Gyu9">Verify a Skate Spot</a></h2>
<p id="verifyInfo">We rely on community verification to determine if the information submitted is correct. To verify a skate spot, navigate
to that page and use the form linked or <a href="https://forms.gle/FkDWGHKYTDkA5Gyu9">click here.</a></p>
</div>
<br>
<div id="updateASpot">
<h2 id="SubVerUpTitle"><a target="_blank" href="https://forms.gle/8VWEyVNMnw9L29B7A">Update a Skate Spot</a></h2>
<p id="updateInfo">Is the information listed for your favourite skate spot incorrect or incomplete? Please let us know with the Google Form
linked <a href="https://forms.gle/8VWEyVNMnw9L29B7A">here</a> so that we can make the appropriate ammendments.</p>
</div>
<br>
</div>
</body>
<footer>
<p>
Created by <a href="https://github.com/CelineLind">CelineLind</a> 2021
<br>
This website was built on <a href="about.html">Yuggera land.</a>
</p>
</footer>
</html>