-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (21 loc) · 830 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<meta charset="utf-8">
<title>Etch-a-sketch</title>
<link href="styles/reset.css" rel="stylesheet" type="text/css">
<link href="styles/style.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<div id="page">
<div id="options">
<h1>Javascript/Jquery sketch pad</h1>
<button id="clear" type="button">Clear</button>
<button id="resize" type="button">Resize</button>
<button id="random" type="button">Random colors</button>
<button id="eraser" type="button">Eraser</button>
</div>
</div>
</body>
</html>