Posts

Showing posts from September, 2017
Image
Project 1 <!doctype html> <html> <head> <meta charset="UTF-8"> <title> ART 210 - CANVAS PROJECT </title> <style type="text/css"> body,td,th { font-family: Helvetica, Arial, sans-serif; font-size: 12px; color: rgba(0,0,0,1); } body { background-color: rgba(255,255,255,1); } #myCanvas { border: rgba(102,0,255,1) medium dashed; } </style> </head> <body> <canvas id="myCanvas" width="1000" height="1000"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE var canvas = document.getElementById('myCanvas');       var context = canvas.getContext('2d');       context.rect(0, 0, canvas.width,
Image
I created this image as a fan of science fiction. I wanted to use the html5 code to make something creative utilizing science fiction objects.