-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 939 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="ResetAll.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Etch-a-Sketch</title>
</head>
<body>
<div class="Board">
</div>
<div class="AllButtons">
<div class="Heading">Etch-a-Sketch</div>
<div class="Button" onclick="ResetBoard();">RESET</div>
<div class="Button" onclick="ResizeBoard();">RESIZE</div>
<div class="Button" onclick="EraseAllColorEffect();">ERASE</div>
<div class="Button" onclick="SetColorToRed();">RED</div>
<div class="Button" onclick="SetColorToGreen();">GREEN</div>
<div class="Button" onclick="SetColorEffectAtRandom();">RAINBOW</div>
<input type="color" name="RangeofColor" class="SetColor Button" onchange="SetColorOfUserChoise();">
</div>
<script type="text/javascript" src="Etch.js"></script>
</body>
</html>