-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclimate-policy.html
115 lines (103 loc) · 3.02 KB
/
climate-policy.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
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Page with Next Button</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<STYLE> * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Press Start 2P', cursive; /* Game-style font */;
background-image: url('UG9KXRgvR4-JIgE3u-8u3Q.webp'); /* Game-like background */
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
text-align: center;
display: flex;
flex-direction: column;
align-items: center; /* Center content horizontally */
justify-content: center; /* Center content vertically */
height: 100vh;
}
.video-container {
margin-bottom: 20px;
width: 300%; /* Ensure it takes up full width of its container */
display: flex;
justify-content: center;
}
video {
width: 300%; /* Increase or decrease the percentage to adjust size */
max-width: 1000px; /* Set maximum width for larger screens */
height: auto; /* Maintain aspect ratio */
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
align-items: left;
}
.button-container {
margin-top: 20px;
}
.next-button, .back-button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
.next-button:hover,.back-button:hover {
background-color: #45a049;
}
.earth-map-btn {
position: absolute;
top: 20px;
right: 20px;
padding: 10px 20px;
background-color: #010702;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
display: inline-block;
}
.earth-map-btn:hover {
background-color: #45a049;
}
</STYLE>
</head>
<body>
<div class="container">
<div class="video-container">
<video controls>
<!-- Replace 'your-canva-video.mp4' with your exported Canva video file -->
<source src="video5.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="button-container">
<button class="back-button" onclick="goToPreviousPage()">BACK</button>
<button class="next-button" onclick="goToNextPage()">NEXT</button>
</div>
<div> <a href="https://www.eodms-sgdot.nrcan-rncan.gc.ca/index-en.html" class="earth-map-btn">Earth Map</a></div>
</div>
<script>
function goToNextPage() {
window.location.href = "game5.html"; // Replace with your next page URL
}
function goToPreviousPage() {
window.history.back(); // Go back to the previous page
}
</script>
</body>
</html>