0% found this document useful (0 votes)
9 views1 page

Htmlviewer HTML

The document is an HTML template for a simple paint application. It includes a canvas for drawing, options to select color and thickness, and a button to clear the canvas. The design is straightforward, with basic styling and functionality provided through an external JavaScript file.

Uploaded by

shamaatmika.uv
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Htmlviewer HTML

The document is an HTML template for a simple paint application. It includes a canvas for drawing, options to select color and thickness, and a button to clear the canvas. The design is straightforward, with basic styling and functionality provided through an external JavaScript file.

Uploaded by

shamaatmika.uv
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title>Simple Paint App</title>
<style>
#canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Simple Paint App</h1>

<label for="color">Select color:</label>


<input type="color" id="color">

<br><br>

<label for="thickness">Select thickness:</label>


<input type="number" id="thickness" min="1" max="10" value="1">

<br><br>

<button id="clear">Clear</button>

<br><br>

<canvas id="canvas" width="500" height="500"></canvas>

<script src="app.js"></script>
</body>
</html>

You might also like