Spaces:
Paused
Paused
<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> | |