-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenarios.html
More file actions
113 lines (99 loc) · 3.38 KB
/
scenarios.html
File metadata and controls
113 lines (99 loc) · 3.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script
id="Cookiebot"
src="https://consent.cookiebot.com/uc.js"
data-cbid="18e2d09c-a0ae-47cb-9e5e-39d085eaffbf"
type="text/javascript"
async
></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3SJZ7GW7WS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-3SJZ7GW7WS", {
anonymize_ip: true,
});
gtag("config", "G-3SJZ7GW7WS");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/scenarios-style.css" />
<link rel="stylesheet" href="./styles/display-message.css" />
<link rel="stylesheet" href="./styles/gods-board.css" />
<link rel="stylesheet" href="./styles/action-board-styles.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Scenarios</title>
</head>
<body>
<!-- begining of header section with three inner section-->
<div class="header-container">
<a href="./index.html" class="header-left header-left-actions"
><img src="/images/2g-prod-logo.png" alt="" />
<a href="./index.html" class="left-title">II G`s Production</a>
</a>
<div class="header-middle header-middle-actions">
<img class="left-image" src="/images/header-middle-pic.jpeg" alt="" />
</div>
<div class="header-right header-right-actions">
<img class="horus-eye" src="/images/eye-of-horus.webp" alt="" />
</div>
</div>
<div class="mobile-warning blur-warn">
<div class="message-warn">
<div class="message-text">
For now, this product is only available for desktop devices.
</div>
<a class="go-back" href="./index.html"
><button class="go-back">Main Menu</button></a
>
</div>
</div>
<!-- end of header -->
<!-- begening of main section with options box with inner option sections -->
<main class="main">
<div class="blur hidden">
<audio
id="notification-sound"
src="./sound-efects/Epic Saga (90 bpm).wav"
preload="auto"
></audio>
<div class="message">
<div class="api-html"></div>
<div class="messagetext"></div>
<button class="close-button">
<img
class="close-button-img"
src="/images/buttons/ouroboros.gif"
alt=""
/>
<h6 class="close-text">Press To Close</h6>
</button>
</div>
</div>
<a class="go-back" href="./index.html"
><button class="go-back">Main Menu</button></a
>
</main>
<!-- end of main section -->
<!-- begening of footer with two inner section -->
<footer class="footer-container">
<div class="footer-left">
<h1 class="left-title-footer">II G`s Production ©</h1>
</div>
<div class="footer-right"></div>
</footer>
<!-- end of footer -->
<script type="module" src="./scripts/gods-board/gods-board.js"></script>
</body>
</html>