Emoji using HTML

Emojis are commonly used in todays computer-based communication. We often find an emoji font face pre-installed on many devices which is necessary for the rendering of the emoji symbol. In the following EXAMPLE I will try to discuss some key…

Read MoreEmoji using HTML

Bootstrap Grid

Bootstrap’s grid system allows up to 12 columns across the page.If you do not want to use all 12 column individually, you can group the columns together to create wider columns.Bootstrap’s grid system uses a series of containers, rows, and…

Read MoreBootstrap Grid

Canvas Clock Start

To start the clock, call the drawClock function at intervals: <!DOCTYPE html> <html> <body> <canvas id=”canvas” width=”400″ height=”400″ style=”background-color:#333″> </canvas> <script> var canvas = document.getElementById(“canvas”); var ctx = canvas.getContext(“2d”); var radius = canvas.height / 2; ctx.translate(radius, radius); radius = radius…

Read MoreCanvas Clock Start

Blinking Text With Rainbow Colour

script guru css

<!DOCTYPE html> <html> <head> <style> .blinking { background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) ); background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15,…

Read MoreBlinking Text With Rainbow Colour