Program No.2: Program for Creating animation of “Bouncing Cloud” using HTML and CSS. Bouncing cloud
  Program No.5: Program to demonstrate BezierCurveTo() method using HTML canvas. your browser does not support the HTMLs canvas tag. Program No.4: Program to demonstrate “StrokeText()” method using HTML Canvas. your browser does not support the HTML canvas tag.   Program No.10: Write JavaScript Program to show light ON/OFF Demo. LIGHT ON AND OFF

Light ON And OFF

      { background-color:#A2BFCE; border-radius:4px; padding:10px; width:600px; height:300px; } .cloud { position:relative; } #bigCloud { animation:bobble 2s infinite; margin-left:100px; margin-top:15px; } @keyframes bobble { 0% { transform:translate3d(50px,40px,0px); animation-timing-function:ease-in; } 0% { transform:translate3d(50px,60px,0px); animation-timing-function:ease-out; } 100% { transform:translate3d(50px,40px,0px);}