forked from Bijoolabs/bijoo-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (48 loc) · 2.21 KB
/
index.html
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
<!doctype html>
<html class="no-js" lang="fr">
<head>
<meta charset="UTF-8" />
<title>Website title</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" href="build/images/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="build/images/favicon.png" />
<link rel="stylesheet" href="build/styles/main.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<!-- Header -->
<header class="mainHeader">
<h1>Welcome to Bijoo Start !</h1>
</header>
<!-- Page content -->
<main class="mainContent">
<div id="turn">0</div>
<div class="player" id="player_1">
<h1>player 1</h1>
<button class="button_1">Button</button>
<button class="button_2">Button</button>
<button class="button_3">Button</button>
<button class="button_4">Button</button>
<button class="button_5">Button</button>
</div>
<div class="player" id="player_2">
<h1>player 2</h1>
<button class="button_1">button</button>
<button class="button_2">button</button>
<button class="button_3">button</button>
<button class="button_4">button</button>
<button class="button_5">button</button>
</div>
</main>
<!-- Footer -->
<footer class="mainFooter"></footer>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="build/scripts/main.js"></script>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=2"></' + 'script>')</script>
</body>
</html>