
body {
font-family: Arial, sans-serif;
text-align: center;
}
canvas {
border: 2px solid #333;
margin-top: 20px;
}
#controls {
margin-top: 20px;
}
#downloadBtn {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
#downloadBtn:hover {
background-color: #0056b3;
}
Simple Drawing App
Clear
Download Drawing
const canvas = document.getElementById('canvas');
...