D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
stage
/
public
/
canvas
/
Filename :
index.html
back
Copy
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Paint</title> </head> <body> <div id = "wrapper"> <canvas id = "paint" width = "500" height = "400"></canvas> <form method = "POST" action = "server.php" enctype = "multipart/form-data"> <input type = "text" id = "canvasData" name = "canvasData" /> <input type = "button" id = "clear" name = "clear" value = "Очистить" /> <input type = "submit" value = "Сохранить" /> </form> </div> </body> <script src="jquery-3.1.1.min.js"></script> <script src="script.js"></script> </html>