-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegende.html
More file actions
50 lines (39 loc) · 969 Bytes
/
legende.html
File metadata and controls
50 lines (39 loc) · 969 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Codenames | Colors explained</title>
<link rel="stylesheet" href="legende.css">
<!-- JQUERY -->
<script src="jquery-3.5.1.min.js"></script>
</head>
<body>
<h1>Codenames: All four colors explained</h1>
<div id="uitlegcontainer">
<div>
<h3>Team RED</h3>
<div id="teamred"></div>
<p>This color represents team RED.</p>
</div>
<div>
<h3>Team BLUE</h3>
<div id="teamblue"></div>
<p>This color represents team BLUE.</p>
</div>
<div>
<h3>Neutral</h3>
<div id="neutral"></div>
<p>This is just a neutral tile.</p>
</div>
<div id="dontclickme">
<h3>The Assassin</h3>
<div id="assassin"></div>
<p>I'm the assasin, if you click me, you'll lose!</p>
</div>
<script>
$("#dontclickme").click(function(){
alert("You lose! :)")
})
</script>
</div>
</body>
</html>