-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (79 loc) · 3.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<!-- Copyright Ostler et al. (Jimmy Ostler, Pachie Ackerman, August Bergquist, Benjamin Weber)-->
<title>FantAscII</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header class = "header">
<div class = "box" id = "top_left"> Flexybox
</div>
<div class = "box" id = "top_right">
<input type = "file" id = "imgInput"/>
<button class="saveButton" onclick = "logFile()">Save Text File to Clipboard</button>
</div>
</header>
<div class = "content">
<div id = "toolbar">
<div class = "toolbar_button" id = "select">
<img src="resources/select.png" alt="paint icon" id = "selectImage" width="50" height="50">
<br>Select
</div>
<div class = "toolbar_button" id = "brush">
<img src="resources/paint.png" alt="brush icon" id = "paintImage" width="50" height="50">
<br>Brush
</div>
<div class = "toolbar_button" id = "erase">
<img src="resources/eraser.png" alt="erase icon" id = "eraseImage" width="40" height="50">
<br>Eraser
</div>
<div class = "toolbar_button" id = "text">
<img src="resources/text.png" alt="toolbar icon" id = "textImage" width="50" height="50">
<br>Text
</div>
<div class = "toolbar_button" id = "fill">
<img src="resources/bucket.png" alt="fill icon" id = "fillImage" width="50" height="50">
<br>Bucket
</div>
<div class = "toolbar_button" id = "typing">
<img src="resources/typing.png" alt="typing icon" id = "fillImage" width="50" height="50">
<br>Typing
</div>
<div class = "toolbar_button" id = "shape">
<img src="resources/shape.png" alt="shape icon" id = "fillImage" width="50" height="50">
<br>Shape
</div>
<div class = "toolbar_button" id = "mode_switch">
<img src="resources/switch_char.png" alt="mode icon" id = "fillImage" width="100" height="50">
<br>Switch
</div>
<div class = "toolbar_button" id = "clear">
<img src="resources/clear.png" alt="clear icon" id = "fillImage" width="50" height="50">
<br>Clear
</div>
<div class = "toolbar_button" id = "camera">
<img src="resources/camera.png" alt="camera icon" id = "fillImage" width="50" height="50">
<br>Camera
</div>
<div class = "toolbar_button" id = "settings">
<br>Settings
</div>
<div class = "toolbar_button" id = "info">
<br>Info
</div>
</div>
<strong id = "editor" oncontextmenu="return false;"></strong>
</div>
<script>
document.onkeydown = function (e) {
return false;
}
</script>
<script src = "script.js"></script>
</body>
</html>