-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
63 lines (63 loc) · 3.02 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.css">
<link rel="shortcut icon" type="image/png" href="CodeNames.png"/>
<script src="codenames.js"></script>
<link rel="stylesheet" type="text/css" href="codenames.css">
<meta name="title" content="CodeName Grid Generator">
<meta name="description" content="Webapp application to generate randomized grid layouts for the popular CodeNames boardgame.">
<meta name="keywords" content="code,names,codenames,generator,grid">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="3 days">
<meta name="author" content="Michel Chatmajian">
<title>CodeNames Grid Generator</title>
</head>
<body>
<div class="ui container">
<h1 class="ui header center aligned" style="padding-top:2em;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">CodeNames Grid generator </h1>
<button class="fluid ui button" id="generate">Click here to generate a new table!</button>
<table id="grid" class="top attached ui basic table">
<tbody>
<tr>
<td id="1"></td>
<td id="2"></td>
<td id="3"></td>
<td id="4"></td>
<td id="5"></td>
</tr>
<tr>
<td id="6"></td>
<td id="7"></td>
<td id="8"></td>
<td id="9"></td>
<td id="10"></td>
</tr>
<tr>
<td id="11"></td>
<td id="12"></td>
<td id="13"></td>
<td id="14"></td>
<td id="15"></td>
</tr>
<tr>
<td id="16"></td>
<td id="17"></td>
<td id="18"></td>
<td id="19"></td>
<td id="20"></td>
</tr>
<tr>
<td id="21"></td>
<td id="22"></td>
<td id="23"></td>
<td id="24"></td>
<td id="25"></td>
</tr>
</tbody>
</table>
<footer class="ui header center aligned">App by <a href="https://www.github.com/almiche" class="ui link">Michel Chatmajian</a> | <a href="mailto:chamich196@hotmail.com">Contact</a> | Copyright FamingoLabs 2018</footer>
</div>
</body>
</html>