-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Basit Çizim Uygulaması</title>
</head>
<body>
<div class="canvas-container">
<canvas id="drawingCanvas" width="900" height="600"></canvas>
</div>
<div class="color-palette">
<button class="color-button" style="background-color: red;"></button>
<button class="color-button" style="background-color: orange;"></button>
<button class="color-button" style="background-color: brown;"></button>
<button class="color-button" style="background-color: yellow;"></button>
<button class="color-button" style="background-color: green;"></button>
<button class="color-button" style="background-color: blue;"></button>
<button class="color-button" style="background-color: navy;"></button>
<button class="color-button" style="background-color: purple;"></button>
<button class="color-button" style="background-color: black;"></button>
</div><br>
<button id="eraserButton">Silgi / Kalem</button>
<script src="script.js"></script>
</body>
</html>