-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 1016 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
<!DOCTYPE html>
<html>
<head>
<title> Malik's Etch-A-Sketch</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<script src="main.js"></script>
</head>
<body>
<h1>Etch-A-Sketch</h1>
<div class="header">
<h6>Select the size</h6>
<button id="popup" class="btn btn-info">Select</button>
</div>
<p id="message"></p>
<p id="draw"></p>
<div class="board"></div>
<div class="footer">
<button class="btn btn-dark" onclick="setColor('black')">Black</button>
<button class="btn btn-warning" onclick="setColor('random')">Random</button>
<button class="btn btn-danger" onclick="resetBoard()">Reset</button>
</div>
</body>
</html>