-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<title>Modern Art Generator</title>
</head>
<body>
<h1>Modern Art Generator</h1>
<canvas id="art" width="600" height="400"></canvas>
<br>
<button onclick="randomize()">Randomizer !</button>
<br><br>
<table>
<tr>
<td><input type="checkbox" id="circles" onclick="drawCircles()"/></td>
<td>Add me some circles</td>
</tr>
<tr>
<td><input type="checkbox" id="squares" onclick="drawSquares()"/></td>
<td>SQUARES !</td>
</tr>
<tr>
<td><input type="checkbox" id="lines" onclick="drawLines()"/></td>
<td>Lines please !</td>
</tr>
</table>
<script src="art.js"></script>
</body>
</html>