img2img-turbo / testapp /index.html
Inmental's picture
Upload folder using huggingface_hub
343e5a8 verified
raw
history blame contribute delete
813 Bytes
<!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>