• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>HTML5 Multimedia Canvas</title>
7
</head>
8
​
9
<body>
10
​
11
    <h1>canvas 요소에 원 그리기</h1>
12
​
13
    <canvas id="drawCanvas" width="300px" height="200px" style="border: 1px solid #993300">
14
        이 문장은 사용자의 웹 브라우저가 canvas 요소를 지원하지 않을 때 나타납니다!
15
    </canvas>
16
​
17
    <script>
18
        var paper = document.getElementById("drawCanvas");
19
        var context = paper.getContext("2d");
20
        context.beginPath();
21
        context.arc(150, 100, 50, 0, 2 * Math.PI);
22
        context.stroke();
23
    </script>
24
​
25
</body>
26
​
27
</html>