KiPiPo.com blog php design css html javascript review

19Jun/110

CSS Generator Tools

Here some useful web design tools for make your live easier  :) .

CSS Button Generator - button.csscook.com

CSS Button Generator

CSS Layout Generator - csslayoutgenerator.com

CSS Rounded Corner Generator - cssround.com

CSS Pattern Generator - www.patternify.com

CSS Text to Path generator - csswarp.eleqtriq.com

CSS Sprites Generator - csssprites.com

Tagged as: No Comments
10Apr/110

hear music online

If you have fast internet connection, i think you must try this one.  Online Music Website. In here you can search your favorite song and play it directly no need to download it. You can create your playlist also dan save it. It's free :) . They have so many type  of song, from west, japan, to chinese , etc. Try it at :
12Feb/110

basic jquery tutorial

What is jquery ? jquery is one of most popular javascript library to make your live easier :-D , you can make animation, ajax, manipulate html with only few line code. You can download jquery file from www.jquery.com . Here same sample jquery for basic usage :)   .

Hello World

//make sure you use ready state to make sure all element is loaded before execute the script inside
$(document).ready(function(){
 alert("Hello World");
});

Full code :

<html>
 <head>
    <title>Untitled Document</title>
 </head>
<body>
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
  <script type="text/javascript">
     $(document).ready(function(){
        alert("Hello World");
     });
 </script>
</body>
</html>

7Jan/110

10 awesome Sunset wallpapers

Here 10 awesome Sunset wallpapers

Sunset behind rock

Burning Sunset

Coastal Sunset

10Dec/100

Free Photo Editor Online

photo-editor-online
If you want to edit your photo , here i found a free online tools to edit your photos become nicer   :lol:  .
You can try Pixlr . Pixlr provide some usefull tools to edit your photos :

7Dec/100

create simple menu navigation using CSS

Here i will explain how to make simple menu using CSS (without table) like this.
First create menu using list tag li and make inside <div> element and give it name as "main-menu". After that make css for styling the list.  We must make the list become one line using float:left to make horizontal menu. For the detail you can see in

18Nov/100

FLOWER DEFENSE

KIZ – FLOWER DEFENSE is a really nice game to play. If you like tower defense games, so you must try this game. In this game, we must build defensive unit to protect our flower from Beetles. If you want to save your game, just login using your Facebook account, so every time you back to game page, you do not need to play from beginning

Click here to play the game

1

1

flower denfense

1

2

2

2

3

3

3

4

4

4

5

5

5

6

6

6
11Nov/100

Page Preview in Google search result

Today, when i was using google for search, i found that Google has add a new icon for preview of the web pages in search result.

google new icon

Tagged as: No Comments
7Nov/100

the various uses of “group by” in mysql

I will explain some useful tips  using "group by" query in mysql.

First create new table for testing in your database ...

CREATE TABLE `movie` (
`id` tinyint(4) NOT NULL auto_increment,
`title` varchar(100) default NULL,
`genre` varchar(100) default NULL,
`price` double(10,2) default NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM;

INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (1, 'Spiderman', 'action', 5.00);
INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (2, 'Hulk', 'action', 4.00);
INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (3, 'Romance in the rain', 'romance', 4.00);
INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (4, 'Hello World', 'comedy', 10.00);
INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (5, 'Bang Bang', 'comedy', 6.00);

7Nov/100

Beautiful Nature Wallpaper

Here some beautiful nature wallpaper i've found :

Fall Secenry Autumn Leaves
Fall Secenry Autumn Leaves
Blue sky and islandBlue sky and island
nature
Maldives's blue Sky and Turquoise Sea
Maldives's blue Sky and Turquoise Sea
Tagged as: No Comments