forked from marrerom/Web-Teaching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash.ejs
47 lines (47 loc) · 1.65 KB
/
splash.ejs
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
<!DOCTYPE html>
<html>
<head>
<title>Ballons: a two player word game</title>
<link rel="stylesheet" href="stylesheets/splash.css">
</head>
<body>
<main>
<section id="left">
<div id="decoration-top">
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
<span class="square"></span>
</div>
<h1>Exploding balloons</h1>
<h2>A two player word game</h2>
<h3><%= gamesInitialized %>
<%if (gamesInitialized != 1) { %>
games
<% } else { %>
game
<% } %>
initialized,
<%= gamesCompleted %>
completed
</h3>
</section>
<section id="right">
</section>
<section id="balloons">
<form action="/play" method="get">
<button type="submit">PLAY</button>
</form>
<span class="balloon" id="b1"></span>
<span class="balloon" id="b2"></span>
<span class="balloon" id="b3"></span>
</section>
</main>
</body>
</html>