-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 1.9 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<title>Paint 2.0</title>
</head>
<body>
<!-- Tool Bar -->
<div class="top-bar">
<!-- Active Tool -->
<div class="active-tool">
<span id="active-tool" title="Active Tool">Brush</span>
</div>
<!-- Brush -->
<div class="brush tool" id="tools">
<i class="fas fa-brush" id="brush" title="Brush"></i>
<input class="jscolor" value="000000" id="brush-color">
<span class="size" id="brush-size" title="Brush Size">5</span>
<input type="range" min="1" max="50" value="5" class="slider" id="brush-slider">
</div>
<!-- Bucket -->
<div class="bucket tool">
<i class="fas fa-fill-drip" title="Background Color"></i>
<input class="jscolor" value="ffffff" id="bucket-color">
</div>
<!-- Eraser -->
<div class="tool">
<i class="fas fa-eraser" id="eraser" title="Eraser"></i>
</div>
<!-- Clear Canvas -->
<div class="tool">
<i class="fas fa-trash-alt" id="clear-canvas" title="Clear"></i>
</div>
<!-- Download Image -->
<div class="tool">
<a id="download">
<i class="far fa-save" title="Save Image File"></i>
</a>
</div>
</div>
<!-- Mobile Message -->
<div class="mobile-message">
<h2>Please use this app on larger screen</h2>
</div>
<!-- Script -->
<script src="jscolor.js"></script>
<script src="script.js"></script>
</body>
</html>