Skip to main content

Posts

Showing posts from April, 2015

HTML5 Canavas Draw Home Tutorial

 HTML5 CANVAS EXAMPLE DOWNLOAD, HTML 5 Canvas Tutorial, HTML5 Canvas Basic, HTML 5 Canvas Assignment To Draw Home, HTML5 Canvas Tutorial to Draw Home, HTML Canvas tutorial to draw house,     HTML5 EXAMPLE TO DRAW HOUSE  SAVE FOLLOWING CODE USING HOUSE.HTML  <!DOCTYPE html> <html lang="en"> <html> <head> <style> #myCanvas{            background-color:pink;        border:2px solid black;        width:850px;            height:800px;          } </style> </head> <body> <canvas id="myCanvas">  browser not support </canvas> <script>   var c=document.getElementById("myCanvas");   var ctx=c.getContext("2d");   ctx.moveTo(50,70);   ctx.lineTo(50,115);   ctx.moveTo(60,70);   ctx.lineTo(60,115);   ctx.moveTo(70,80);   ctx.lineTo(70,105);   ctx.moveTo(85,80);   ctx.lineTo(85,105);   ctx.moveTo(87,90);   ctx.lineTo(87,95);   ctx.moveTo(83,90);   c

Create HTML CSS javascript News Box , HTML CSS News Slider Download

Create HTML CSS javascript News Box , HTML CSS News Slider Download, HTML News Box For Your Website Free Download, java script news box For your Website, HTML CSS News Box Tutorial, HTML CSS News Box Example With Source code, HTML CSS Link Slider, HTML Slider Menu ,java script news box For your Website, HTML News box source Code example, News Slider   Here Is Example Of News Box slider for Your Website you can use it wiht PHP, ASP, ASP.NET, JSP,HTML 1.HTML Code  Save this code as index.HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title itemprop="name"></TITLE> <meta name="description" itemprop="description" content=""/> <META NAME="Keywords" CONTENT=""/>  <meta name=&quo

HTML5 Smiley Face Using Canvas

HTML5 example to create Smiley Face Using Canvas,HTML5 Canvas tutorial, Smiley Face Using Canvas, HTML5 example Smiley Face Using Canvas with source code, step by step tutorial  to create Smiley Face, html5 example source code to draw smiley Face using canvas html5 example source code to draw smiley Face using canvas Download    HTML Smiley Face Using Canvas Complete Source Code is Follow <! DOCTYPE html> <html lang ="en"> <head> <style> #myCanvas { background-color:#DEB887;                        border:3px solid black;          width:900px;          height:600px;                      } </style> </head> <body>     <canvas id="myCanvas">         browser not support    </canvas>      <script>           var c=document.getElementById("myCanvas");           var ctx =c.getContext("2d"); ctx.fillStyle='#C71585'; ctx.font='Arial 50px'; c