-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
27 lines (24 loc) · 884 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
27
<!DOCTYPE html>
<html>
<head>
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<div class='fluid-row'>
<h1>Etch-a-sketch</h1>
<div class="button-container">
<button id="reset" class="btn btn-primary" type="submit">Reset Grid</button>
<button id="rainbow" class="btn btn-primary" type="submit">Rainbow</button>
<button id="black" class="btn btn-primary" type="submit">Black</button>
<button id="erase" class="btn btn-primary" type="submit">Eraser</button>
</div>
<div class='fluid-container'>
<div class='grid-container'>
</div>
</div>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>