mirror of
https://github.com/servo/servo.git
synced 2025-07-10 17:03:40 +01:00
16 lines
353 B
HTML
16 lines
353 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
html, body { margin: 0; padding: 0; }
|
|
</style>
|
|
<body>
|
|
<canvas id ="canvas" width="200" height="200"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById('canvas');
|
|
var context = canvas.getContext("2d");
|
|
context.strokeStyle = 'green';
|
|
context.lineWidth = 4;
|
|
context.strokeRect(0, 0, 200, 200);
|
|
</script>
|
|
</body>
|
|
</html>
|