Sunday, October 31, 2010

Free online HTML/CSS/Javascript editor

Sometimes you need to test HTML/CSS/Javascript codes but you don't want to save it on computer, only want to test it. Don't worry you can use online editor to test your codes.

What should I do?


Simply click on link below, then you will see editor page. Edit your codes (left side textarea) and then click on the button provided, you will see result of your code in output section.

http://www.onlinetut.com/tutorial/example/online_html_editor.jsp


sourcehttp://www.onlinetut.com/

category : Html editor, online,css, javascript, test codes, edit codes, Free.









Saturday, October 30, 2010

HTML image as button

Images are important part of any web pages, sometimes you need images as button means when someone clicks on it move to some other page (image as link). 

What to do?

simply use HTML anchor tag with img tag, a combination of <a> and <img> tag creates image as button.

Example:

<a href="http://www.onlinetut.com"><img src="

http://www.onlinetut.com/tutorial/images/favourite.gif

" height="100" width="100"/></a>


You can edit and test this code :



Sourece: