-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.html
107 lines (106 loc) · 2.5 KB
/
start.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link
rel="icon"
type="image/x-icon"
href="./favicon.ico"
/>
<link
rel="icon"
type="image/png"
href="favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="favicon-16x16.png"
sizes="16x16"
/>
<title>The Green FootPrint</title>
<link
rel="stylesheet"
href="./css/styleStart.css"
/>
<link
rel="stylesheet"
href="./css/continueButton.css"
/>
</head>
<body>
<audio
id="entrySound"
src="https://s3.amazonaws.com/files.uploads.lastmileai.com/uploads/cltsxnuvr025tquys61gwaz7i/2024_3_16_6_7_18/4282/Inourecofriendlyapplicationvariousfunctiona.mp3"
preload="auto"
></audio>
<div class="nav">
<nav>
<a href="/">
<img
src="./assets/logoGreenFootPrint.svg"
alt="Green FootPrint logo"
/>
</a>
</nav>
</div>
<div class="container">
<div class="absolutePosition">
<a href="./nameFrame.html">
<button class="animated-button">
<svg
viewBox="0 0 24 24"
class="arr-2"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"
></path>
</svg>
<span class="text">Continue</span>
<span class="circle"></span>
<svg
viewBox="0 0 24 24"
class="arr-1"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"
></path>
</svg>
</button>
</a>
</div>
<img
src="./assets/mission.svg"
alt="mission of our project the green footprint"
/>
</div>
<section class="footer">
<footer>
<img
src="./assets/footer.svg"
alt="Footer Image"
/>
</footer>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
var entrySound = $("#entrySound")[0]; // Get the native audio element for entry sound
// Attempt to play the entry sound on page load
entrySound.play().catch(function (error) {
console.error(
"Playback prevented due to browser restrictions. User must interact with the document.",
error
);
});
});
</script>
</body>
</html>