Make a simple rounded button with CSS

Minimizing the image usage on our web page is to reduce our page size and become easily to load. Usually, we are using an image as a fancy button. Now, with CSS3 new features, we can reduce images on our pages.

Example:

I'm a button

HTML code:

<a href="#" class="mybutton" title"I am a button">I'm a button</a>
CSS code:
 .mybutton  {
    border-right:1px solid #25839a;
    border-bottom:1px solid #25839a;
    padding:0px 16px;
    color:#fff;
    font-size:18px;
    line-height:38px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    background:#ff6117;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    text-decoration:none;


Hover code (Optional) :
 .mybutton:hover  {
    background:#6d777e;
    border-right:1px solid #6d777e;
    border-bottom:1px solid #6d777e;
    }


Write by Arafa Daming

All type of error page.

Do you always see some numbers which you do not understand when browsing some website?

Let's see what does each of these numbers means.

Client Request Errors
400 - Bad Request
401 - Authorization Required
403 - Forbidden
404 - Not Found
405 - Method Not Allowed
406 - Not Acceptable (encoding)
407 - Proxy Authentication Required
408 - Request Timed Out
409 - Conflicting Request
410 - Gone
411 - Content Length Required
412 - Precondition Failed
413 - Request Entity Too Long
414 - Request URI Too Long
415 - Unsupported Media Type


Server Errors
500 - Internal Server Error
501 - Not Implemented
502 - Bad Gateway
503 - Service Unavailable
504 - Gateway Timeout
505 - HTTP Version Not Supported


Write by Arafa Daming

Tools for a webmaster

A web master is a person who is responsible to manage and maintain a web pages/blog. He/she also need to make sure that the web pages/blog are indexed on the search engine. Of course, search engine will try index every web pages/blog on the internet, but it will take time and indexed a few page or every page of your web/blog.

What a webmaster need to do is to submit a site map to the search engine so that the search engine will index the web pages/blog immediately. He/she also can limit the site map to prevent the search engine to indexed unnecessary pages of the web/blog.

There are 3 major search engine that provide free webmaster tools
  1. Google : Google Webmaster tools
  2. Yahoo : Yahoo Site Explorer
  3. MSN : Bing Webmaster tools
Webmaster should use this tools wisely. A webmaster also should know how to find/create the right site map.

Write by Arafa Daming