Posts Tagged ‘html’

New projects are online!

Friday, November 12th, 2010

Just to announce the newest additions to our portfolio:

MOIE

(temporarily on new.moie.com, later will be moved to www.moie.com)

MOIE is one of the most recognized retailers of exceptional residential furnishings, lighting and accessories, with showrooms in Jakarta and Singapore. Clean website look with advanced HTML Animation through JQuery plays.

CHEESE CAKE FACTORY

Cheese Cake Factory is Jakarta’s premier cake shop that is more than just a cake shop. Providing a cozy lounge and delicious dine-in menu, CCF Online allows people to order and have those delicious things delivered to their door.

We are happy to announce the launching of these two websites.

Bigger projects for bigger corporate and FMCG clients to be announced soon!

We live for deadlines

Friday, October 8th, 2010

Just some nice photos from the office – day-to-day life within the small world of idebaik.  Between projects, codes, designs, proposals and all-that-stacks there live smiles, laughter, silly jokes, funny pastimes – we are idebaik. :)


Why in-house projects?

Wednesday, September 29th, 2010

A lot of companies specialized in websites creation in Indonesia usually tend to restrict their business into creating websites for others. By others, we mean other companies that need to exist on the web.

@ Idebaik, we think slightly differently. If the core of our business is obiously making websites for others, we always try to keep a space for internal projects. Internal projects can bring a lot of benefits to us :

  • They belong to us, which means any potential revenues generated by these projects will directly contribute to the company’s good health.
  • They are a good way to experiment new things in terms of website design and programming. Some of them can be considered as laboratories or experimental playground – the place we’re testing things so that next time we implement the technology, it would already be perfect.
  • They show our clients than if we do great websites for them, we are also able to give a global approach to things we do by being able to launch our own concepts. More than “people who do websites”, we are also creative ones.
  • These projects usually generate pretty good traffic and can only give better visibility to Idebaik.

Right now, we have a few in-house projects :

  • indonesiaclubbing.com, which after nearly 4 years of life has become the 1st website dedicated to nightlife and clubbing in Indonesia, with more than 11000 registered members (september 2010).
  • indonewsletter.com, which is a killer online promotion and marketing tool, to boost your sales and increase people’s awareness on your campaign by maintaining regular communication through eNewsletter. You can send up to 150,000 emails to your database in ONE SINGLE CLICK.
  • A branded online shopping – soon to be launched.

More coming soon!

Inside CSS3 – Rounded Corners made easy

Thursday, September 2nd, 2010

Having developed website for almost 10 years, I have known a lot of evolutions in terms of web design. A few years back, one of the biggest frustrations was appearing when you had to make rounded corners to some elements of your website. In 2000, a time where all websites were made using the old-school <table> tag, rounded corners were done using cells. But now, with CSS3, doing rounded corners is a piece of cake. To see the evolution of HTML rounded corners, let’s compare three distinct ways of generating rounded corners.

Solution 1 – Using Table + Images

Below is an example of box using table. The corners are actually made using four 10px*10px images (bl_s1.gif, br_s1.gif, tl_s1.gif, tr_s1.gif)

<table style="background:#9c0" width="400" height="60" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="10" width="10"><img width="10" height="10" alt="Top Left" src="/gfx/corners/tl_s1.gif" /></td>
    <td></td>
    <td height="10" width="10"><img width="10" height="10" alt="Top Right" src="/gfx/corners/tr_s1.gif" /></td>
    </tr>
  <tr>
    <td>&nbsp;</td>
    <td valign="top" >Rounded Corners using Table + Images</td>
    <td height="10" width="10">&nbsp;</td>
  </tr>
  <tr>
    <td height="10" width="10"><img width="10" height="10" alt="Bottom Left" src="/gfx/corners/bl_s1.gif" /></td>
    <td></td>
    <td height="10" width="10"><img width="10" height="10" alt="Bottom Right" src="/gfx/corners/br_s1.gif" /></td>
  </tr>
</table>

Result :

Top Left Top Right
Rounded Corners using Table + Images
Bottom Left Bottom Right

Solution 2 – Using Div + Images (relative / absolute CSS positioning)

This second solution is more recent, but still fastidious. It uses 1 <div> tag for the content (it has relative position), and 4 <img> tags for the corners (they have absolute position). This solution works well on modern browsers, but can produces unexpected results on some older ones. To accomplish that, we need to have to put the following css code in the <head> of the document :

<style type="text/css">
#box{width:380px; height:60px; padding:10px; position:relative}
#box img{position:absolute}
img#tl{left:0; top:0}
img#tr{right:0; top:0}
img#bl{left:0; bottom:0}
img#br{right:0; bottom:0}
</style>

Then display the box by putting the following code this time in the <body> of the document :

<div id="box"">
  <img id="tl" width="10" height="10" alt="Top Left" src="/gfx/corners/tl_s1.gif" />
  <img id="tr" width="10" height="10" alt="Top Right" src="/gfx/corners/tr_s1.gif" />
  <img id="bl" width="10" height="10" alt="Bottom Left" src="/gfx/corners/bl_s1.gif" />
  <img id="br" width="10" height="10" alt="Bottom Right" src="/gfx/corners/br_s1.gif" />
 Rounded Corners using Div + Images
</div>

Result :

Top LeftTop RightBottom LeftBottom RightRounded Corners using Div + Images

Solution 3 – Using CSS3 border-radius property

Extremely simple to implement and not using image, this solution will change your life – really.
To make a nice rounded corner box, put the code below in the head of your document :

<style type="text/css">
#box{
width:380px;
background:#9c0;
height:60px;
padding:10px;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
background:#9c0
}
</style>

Then, in the <body> of your document :

<div id="box"">
  Rounded Corners using CSS3 border-radius property
</div>

Result :

Rounded Corners using CSS3 border-radius property

As you can see, this solution just makes everything easier. The only annoying thing is that in order to have the border radius displayed on all modern browsers, you must set the border-radius property three times, using border-radius, -moz-border-radius, and -webkit-border-radius. Old browsers will just have the box displayed withut any rounded corners.

Idebaik is growing!

Saturday, July 31st, 2010

July was a really good month for Idebaik, in all aspects. But like any company, at some point, we must be realistic and we have to admit that we need more people to face the never-ending growth of our business.

That’s why we decided to look for new people to join our team. And if you read our site carefully – I know you did ! -, you will know that @ Idebaik, an employee is more than just an employee. S/He is a part of Idebaik family !

So, starting from next week, three new employees will be joining our company. 2 Account Executives (Rizky & Yonash) and one intern web developer, Brieuc (I challenge you to speel his name perfectly), from France. All aged of 22 years old, they will help us answering the growing demand from our clients.

We will introduce you to them more in details soon !

W3C Compliant : what for?

Friday, June 4th, 2010

W3C stands for World Wide Web Consortium. It’s an entity that fights for a clean internet in terms of coding. Consider it a bit like a dictionary. You would say “House”, which is correct, but you would not say “Hous” or “Housse”.

It’s also like comparing a car full of junk and a clean car – the car with junk would still work, but it perhaps works slower and worse than the clean car.

Coding is the same.  People could code in a messy way and the site would still work, but it doesn’t fit the W3C Standard and therefore the usage is not optimized for best browsing and loading experience.

We care a lot about this and therefore each and every site we make must comply with the standards.

Will talk more about clean and proper coding later…

Discover our latest works!

Friday, April 30th, 2010

These last weeks have been pretty hectic for our team! But who’s going to complain about it, since it reflects the good health of our company?

Let me introduce you our 3 latest projects.

Bersihkan Sampah Yuk! (www.jakartabersih.com)

Jakarta Bersih WebsiteThis is the pilot project for the long-term environmental education for the younger generation of Indonesia.

Pioneered by Jakarta’s first lady Mrs. Tatiek Fauzi Bowo, the movement is intended to awaken the awareness of people toward a cleaner future for Jakarta, and the organization, GEMASH (Gerakan Masyarakat Peduli Sampah, meaning People’s Movement Against Garbage) wants to educate children in their early teens (the major target is junior high and high school students aged 12 to 18), and a good way to make them interested in this era of social-networking websites is by providing an online-based community for these “Garbage Warriors” to interact with each others.

As a pilot project, the aim GEMASH seeks to reach is undoubtedly a nationalization of the idea and maybe the expansion of the project itself in the upcoming months.

To visit the website, please click here or click on the picture above.

The Red Alliance (www.redalliance.info)

The Red Alliance WebsiteThe Red Alliance is a group of Jakarta based restaurant, bars and club businesses from within the same shareholding group.

Pioneered by the famous Red Square Group, The Red Alliance seeks to unite the brands under the same umbrella, thus providing a group website and a cross-promotion for all outlets in the same holding.

The Red Alliance currently has 13 brands and will expand over time – their outlets are spread throughout Indonesia’s biggest cities including Jakarta, Bali, Balikpapan, as well as in KL and Singapore.

To visit the website, please click here or click on the picture above.

Scarpasa (www.scarpasa.com)

Scarpasa - Lower your heels, not your expectations!Killer designer shoes that don’t have to hurt your shoes and so comfortable to walk in are hard to find, but Scarpasa scours the world in quest of finding such shoes for its customers.

Founded by an Indonesian lady living in New York, Scarpasa is on its way to become an international brand of online shopping for shoes.

To visit the website, please click here or click on the picture above.