Aug
07
Best marathi poem
04:14 pm
Tu Poli Mi Bhaat,
Tu Football Mi Laath
Tu Bashi Mi Cup,
Tu Ushi Mi Zhop.
Tu Ball Mi Bat,
Tu Undir Mi Cat…
Mi Mungla Tu Mungi,
Tu Saadi Mi Lungi..
Tu Love Mi Prem ,
Tu Photo Mi Frame..
Tu Doka Mi Kes,
Tu Saban Mi Fhes.
Tu Nisarga Mi Fiza,
Tu Kavita “Mi Maazha”
Tu Ghubad Mi Pankh,
Tu Vinchu Mi Dankh.
Tu Sambaar Mi Dosa
Tu Boxer Mi Thosa
Tu Kanik Mi Poli
Tu Aaushad Mi Goli.
Tu Petrol Mi Car,
Tu Daru Mi Bar.
Tu Dudh Mi Saai,
Tu Kes Mi Dye…..
Tu Chaha Mi Lassi,
Tu Kumkum Mi Jassi…
Tu Toop Mi Loni,
Tu Dravid Mi Dhoni….
Tu Barfi Mi Pedha,
Tu Bavlat Mi Veda…
Tu Computer Mi C.D.,
Tu Cigaratte Mi Bidi..
Tu Dahi Mi Loni,
Tu Kes Mi Pony
Tu Computer Me Mail
Tu Niranjan Me Tel
Tu Tiger Mi Lion
Tu Dadar Me Sion
Tu Takkal Mi Kes..
Tu Canteen Mi Mess
Tu Kes Me Konda,
Tu Dagad Me Dhonda.
Sponsored text :
Life’s distressing without a touch of humor. Humor is very important. And that’s exactly what Mr. Turtle at TurtleSays.Com will provide you with day in and day out. It is a website that uploads funny pictures, jokes, and quotes on a daily basis. It could just be your free-flowing source of laugh and smiles to start your day right. On top of that, there are also funny videos courtesy of YouTube. If you love UTube, you’ll love TurtleSays.Com. The people behind the site, its supporters, and fans comb You Tube everyday to pick out 8 of the best videos uploaded. If you drop by TurtleSays.Com, you are sure to get only the best that YouTube can offer. That means you don’t have to hunting for good videos yourself!
Filed Under Marathi Kavita | 33 comments
Aug
02
Make stylish web 2.0 horizontal menu
01:37 pm
After we finished the tutorial we need to create 2 simple images to style our CSS navigation bar: A background image (the light blue bar) and a transparent button that indicate the active state, all other elements are created with CSS.
Like in most CSS horizontal navigation bars an unordered list is used to hold the menu items:

With the next CSS code it’s possible to style the horizontal navigation bar:
#container {
width:800px;
height:600px;
padding:20px;
}
ul#navbar {
background:url(/tutorials/web20_css_bar/backgr.jpg) repeat-x left top;
margin:0;
border-bottom:3px solid #98CB00;
border-top:1px solid #00CCFF;
list-style-type:none;
height:31px;
}
ul#navbar li {
float:left;
}
ul#navbar li a {
display:block;
padding:5px 15px 4px;
font:bold 16px "Trebuchet MS";
text-decoration:none;
color:#00CCFF;
letter-spacing: -0.1em;
}
ul#navbar li a:hover {
color:#98CB00;
}
ul#navbar li a#current {
background:url(/tutorials/web20_css_bar/current.gif) no-repeat center bottom;
color:#98CB00;
}
We placed the background image behind ul element and added the two borders to the top and bottom. The li element is defined as a floated block element and got some padding to create a bigger button. The last definition is for the current state, which will show up the tri-angle. You need some server-side code (php) to get a dynamic position every time a different page is loaded.
The source files can be downloaded here.
Filed Under CSS, HTML Tips and Tricks and Tutorials | Add comment