Wednesday, October 19, 2016

For my HTML assignment I chose to do a Chanel logo. I love the brand however I don't have that kind of money to afford that. The logo is basically the same on each side and it is normally seen as black so I just left it as that so it would look as similar to the reference picture as possible. It was a little difficult because I'm not too familiar with coding and getting the little kinks out took a while but I am happy with how it turned out! The reference picture is below the picture that I created.





context.beginPath();
context.moveTo(100, 200);
context.quadraticCurveTo(160, 80, 300, 100);
context.quadraticCurveTo(440, 120, 458, 288);
context.quadraticCurveTo(460, 475, 300, 500);
context.quadraticCurveTo(170, 510, 100, 400);
context.lineWidth = '75';
context.stroke();

context.beginPath();
context.moveTo(650, 200);
context.quadraticCurveTo(630, 152, 580, 120);
context.quadraticCurveTo(505, 82, 420, 105);
context.quadraticCurveTo(285, 160, 285, 300);
context.quadraticCurveTo(285, 455, 450, 498);
context.quadraticCurveTo(575, 513, 650, 400);
context.stroke();

No comments:

Post a Comment