-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinale.html
More file actions
157 lines (148 loc) · 4.49 KB
/
finale.html
File metadata and controls
157 lines (148 loc) · 4.49 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Game of Thrones - The Finale Page</title>
<script
src="https://kit.fontawesome.com/593b24e566.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="resources/css/styles.css" />
</head>
<body>
<header class="container-fluid header--background container-fluid">
<nav class="menu navbar navbar-expand-lg responsive">
<a href="index.html" class="navbar-brand">
<img class="navbar__logo pr-3" src="resources/graphics/Logo/2x/Logo2@2x.png" />
<h1 class="navbar-brand navbar__brand">Game of Thrones Race Game</h1>
</a>
<button
class="hamburger navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#togglerNav"
aria-controls="togglerNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<div class="hamburger__element"></div>
<div class="hamburger__element"></div>
<div class="hamburger__element"></div>
</button>
<div class="collapse navbar-collapse navbar__collapse" id="togglerNav">
<div class="navbar-nav ml-auto">
<a
class="nav-item nav-item--color nav-item--hover nav-link"
href="index.html"
>Character Selection</a
>
<a
class="nav-item nav-item--color nav-item--hover nav-link"
href="game.html"
>Board Game</a
>
<a
class="nav-item nav-item--color nav-item--hover nav-link nav-item--active"
href="finale.html"
>Final Page</a
>
</div>
<!-- navbar-nav-->
</div>
<!-- collapse -->
</nav>
</header>
<div class="background-img background-img--finalePage">
<main class="container main" id="animation-container">
<div class="main-hd p-3">
<h2 class="main-hd__title">The Finale Page</h2>
<h3 class="main-hd__sub-title m-auto pt-2">
Congratulations<span class="pl-2" id="playerWinner"></span> you have
won the game!
</h3>
</div>
<!-- main-hd -->
<section
class="p-2 main-section main-section--background justify-content-center"
>
<div class="row">
<div class="m-auto col-10">
<img
id="chairImg"
class="chair"
src="resources/graphics/144ppi/chair.png"
alt="Chair"
/>
<div
class="status__token status__token--toggle-1 status__token--lg status__token--green status__token--animate status__token--shadow-1"
>
<img
id="get-winner-token-1"
class="status__token-icon status__token-icon--lg"
src=""
alt="Token"
/>
</div>
<div
class="status__token status__token--toggle-2 status__token--lg status__token--red status__token--animate status__token--shadow-2"
>
<img
id="get-winner-token-2"
class="status__token-icon status__token-icon--lg"
src=""
alt="Token"
/>
</div>
</div>
</div>
</section>
</main>
</div>
<!-- background-img -->
<footer class="footer">
<div class="icons">
<a
href="https://twitter.com/explore"
class="icons__link icons__link--hover"
>
<i class="fab fa-twitter fa-2x"></i>
</a>
<a
href="https://www.facebook.com/"
class="icons__link icons__link--hover"
>
<i class="fab fa-facebook fa-2x"></i>
</a>
<a
href="https://www.youtube.com/"
class="icons__link icons__link--hover"
>
<i class="fab fa-youtube fa-2x"></i>
</a>
<a href="" class="icons__link icons__link--hover">
<i class="fas fa-envelope fa-2x"></i>
</a>
</div>
</footer>
<script src="resources/js/jquery-3.4.1.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
<script src="resources/js/winner.js"></script>
</body>
</html>