Sunday 19 February 2017

Image Hover CSS Effect


Image Hover Effect CSS


Girfa : Student Help
Girfa : Student Help
Girfa : Student Help



Girfa : Student Help


<div class="container">
  <img src="girfa.jpg" class="image">
  <div class="overlay">
    <div class="text">Girfa : Student Help</div>
  </div>
</div>

CSS Code


.container {
  position: relative;
  width: 50%;
}

Saturday 18 February 2017

CSS Image Formatting


Image Formatting CSS





<img src="girfa.jpg" style="margin-left:20px;border-radius: 8px;"/>



<img src="girfa.jpg" style="border-radius: 50%;"/>

CSS Text Formatting

Font Color,Size,Font Sytle

<span style="color:blue;font-size:xx-large;font-style:italic">Font Color,Size,Font Sytle</span>

Font Face Demo

<span style="font-family:Geneva, Arial, Helvetica, sans-serif;">Font Face Demo</span>

Friday 17 February 2017

Least Common Multiple

Q : Write a program to input two numbers and find out Least Common Multiple?

The smallest positive number that is a multiple of two or more numbers.

Solution : 

/*   ################################
     Girfa Student Help
     LCM
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################