Spaces:
Paused
Paused
File size: 813 Bytes
343e5a8 |
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">
<title>Sketch App Tools Menu</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="tools-menu">
<button class="tool-button">
<img src="brush-icon.svg" alt="Brush" />
</button>
<button class="tool-button">
<img src="line-icon.svg" alt="Line" />
</button>
<button class="tool-button">
<img src="eraser-icon.svg" alt="Eraser" />
</button>
<input type="range" class="brush-size-slider" aria-label="Brush Size" />
<button class="tool-button">
<img src="clear-icon.svg" alt="Clear" />
</button>
</div>
</body>
</html>
|