Tuesday, October 26, 2010

FTP

FTP stands for File Transfer Protocol

It is a protocol used to transfer file from a host to another place. For example, when we want to publish a website in the web hosting. We can use FTP to transfer the file from our computer (client) to the web hosting. The file transfered will not disappeared from the client side. It is actually make another copy to the web hosting (server).



The definition from Wikipedia states that
"File Transfer Protocol (FTP) is a standard network protocol used to copy a file from one host to another over a TCP/IP-based network,
such as the Internet.
FTP is built on a client-server architecture and utilizes separate control and data connections between the client and server."

Tuesday, October 19, 2010

CSS: Introduction and Basic

CSS is also known as "Cascading Style Sheet". It is a sister technology of HTML.It can be use for setting the layout and enhancing the appearance of HTML website.It gives better style to websites which HTML is unable to do so.

For small projects, we can directly embed CSS code in HTML directly.
This is done by putting the codes:


However, in most of the case. We make the code separately and call it in this way

Quote

When you take code blindly, you will only be able to duplicate THAT technique or THAT style, what you should be doing is figuring out the logic and concept, so you can build off of the tutorial into something more.- SohTanaka

Passion