forked from Fesouille/Cookies-clicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (43 loc) · 1.09 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
<!DOCTYPE html>
<html lang="fr">
<head>
<title> Cookie Clicker 5.0 </title>
<meta name="description" content=" ça clique ">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/normalise.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
</header>
<div class="maincontainer">
<div class="affichage" value="0">
</div>
<div id="second_container">
<div id="cookies">
<button type="button" id="click"></button>
</div>
<div id="upgrades">
<table>
<tr>
<td id="multiplier_col">
<button type="button" class="upgrade_button" id="multiplier"></button>
</td>
<td id="autoclic_col">
</td>
</tr>
<tr>
<td colspan="2" id="bonus_col">
</td>
</tr>
</table>
</div>
</div>
</div>
<footer>
</footer>
<script src="js/script.js"></script>
</body>
</html>