Categories
How To Article Technology - Tips

How To Connect FTP Through Command Prompt

How To Connect FTP Through Command Prompt Many tools are available for FTP file transfer. However, you also use the command prompt. To use the Command prompt as like any other FTP tool.Follow the instruction:- 1. Open Command prompt(Window key+R) then type cmd on it and hit enter. 2. Then type ftp “ftp serverame” Example:-     […]

Categories
How To Article Technology - Tips Website Design

How to Optimize JPEG (JPG) images for Good Quality and Small Size

How to Optimize JPEG (JPG) images for Good Quality and Small Size The image compression techniques have their origin in the necessity of reducing the size of the file used to store the image, which is huge when compared to storing text (a 800×600 24 bit color uncompressed image needs 1440000 bytes or 1.37 MB). […]

Categories
How To Article Website Design

ASCII Code for Copyright and Trademark Symbol in Html

ASCII Code for Copyright and Trademark Symbol in Html We can use ASCII codes to create several symbols for HTML.They should be placed into the html just as plain text. The browser render the ASCII code as the correct symbol. Some of them are following:- ASCII Code HTML Code Description ¡ ¢ £ ¤ ¥ […]

Categories
How To Article Javascript

How to use time function in javascript

How to use time function in javascript In JavaScript, we are able to execute some code after a specified time-interval. This is called timing events in javascript. It’s very easy to time events in JavaScript. The two key methods that are used are: setTimeout() clearTimeout() Code for thr following is:- <html> <head> <script type="text/javascript"> function Timeevent() […]