-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.html
39 lines (35 loc) · 1.18 KB
/
sketch.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sketch</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./sketch.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="sketch.js"></script>
</head>
<body>
<nav>
<h1>Sketch</h1>
<div class="modifiers">
<h4>Modes:</h4>
<div class="btn-group" role="group" aria-label="Basic example">
<button class="btn" id="grid">Grid</button>
<button class="btn" id="bubble">Bubble</button>
</div>
<div class="btn-group" role="group">
<button class="btn" id="mono">Monochrome</button>
<button class="btn" id="rainbow">Rainbow</button>
</div>
</div>
</nav>
<div class="container">
<div class="pad">
</div>
</div>
<div class="clear-btn">
<button class="btn" id="change-size">Change size</button>
<button class="btn" id="reset">Reset</button>
</div>
</body>
</html>