-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.html
41 lines (36 loc) · 957 Bytes
/
canvas.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<canvas id="myCanvas" width="400px" height="300px"></canvas>"
<!-- /// -->
<p>Image to use:</p>
<img
id="scream"
width="220"
height="277"
src="/assets/pic_the_scream.jpeg"
alt="The Scream"
/>
<p>Canvas:</p>
<canvas
id="myCanvas2"
width="240"
height="297"
style="border: 1px solid grey"
></canvas>
<!-- //// -->
<canvas
id="myCanvas3"
width="200"
height="120"
style="border: 1px solid #d3d3d3"
></canvas>
<!-- /// -->
<script src="scripts/canvas.js"></script>
</body>
</html>