Monday, 23 December 2013

Text Shadow 

As name itself say what is about. It give shadow to text written in our web-page.

Code in your Page.

<!DOCTYPE html>
 
<html >
<head runat="server">
    <title>Text Shadow</title>
    <style type="text/css">
#text{
   -moz-text-shadow1px 2px 2px #555;     - For Mozilla Browser which doesn't support W3C
   -webkit-text-shadow: 1px 2px 2px #555;   - For Webkit Browser which doesn't support W3C
   text-shadow: 1px 2px 2px #555;           -For all if they support CSS standards as per W3C

     }
    </style>
</head>
<body>
<div>
<p id="text">Hello</p>
</div>

</body> 
</html>


Just run your .html/.aspx/.php web page in browser to see the effect .IE9+ supports text-shadow so don't do efforts for that.Overall others browsers support this functionality .

Live Example to see - http://www.apunkashaher.com
Here you can see Dark Shadow behind every character .
Change the values to see great effect & for fun .
Don't just copy & paste .
Be Creative :) .....

Thursday, 12 September 2013

What is CSS ?

CSS (the game changer )

CSS - cascading style sheet .

But what is the use of css in web technologies , really are you thinking this ?.. lol.
The Websites, webpages anything which is alive on internet, which can be accessed from your computer by typing url in your Web Browser you have visited till now when you start using internet use CSS. Isn't that amazing ? yes it is ..

I am not telling you story when it started , there are plenty of sites on web to search it for .

So what i am doing, is giving you straight forward tips on CSS, for building great looking websites.

So dear, take a beer and bookmark this. There is many more to come here.