Posts

#4 Calligram

Image
This quote is one from JFK when he was speaking in 1962 at the America's Cup Dinner Given by the Australian Ambassador. When he is speaking to the ambassador he says this quote and follows it with how America and Australia are bound together by the "friend" that is the ocean. I thought this fit well with the sailboat because it's talking about how we are connected to the sea in so many ways, and I thought a sailboat was a good way to represent that connection.

#3

Image
Drawing code <!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="800" height="600"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE //sky context.beginPath(); context.rect(0,0,800,200); context.fillStyle="#F0E2FC"; context.fill(); /