28 lines
		
	
	
		
			629 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			629 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <title>LJ Sketch</title>
 | 
						|
    <meta charset="UTF-8"> 
 | 
						|
    <link rel="stylesheet" type="text/css" href="style.css">
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
 | 
						|
    <div id="main">
 | 
						|
      <div id="toolbox">
 | 
						|
	<div id="colors"></div>
 | 
						|
	<input type="color" id="selectedColor"
 | 
						|
	       class="button2x" value="#ffffff"></input>
 | 
						|
	<input type="button" id="clearButton"
 | 
						|
	       class="button2x" value="♻"></input>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div>
 | 
						|
	<canvas id="canvas" width="1024" height="1024"></canvas>      
 | 
						|
	<span class="footer">LJ Sketch</span>
 | 
						|
      </div>
 | 
						|
      
 | 
						|
    <script src="main.js"></script>
 | 
						|
 | 
						|
  </body>
 | 
						|
</html>
 |