Tuesday, December 7, 2010

Experience HTML

In this article we will go through and explore the HTML experiences. HTML experience is just like fun for developers as well as beginners, I have found more interesting at onlinetut.com. As we know HTML is the language for creating web document. So if you want to create web pages then first learn HTML language.

Experiencing HTML language is just learning and gaining your experiences from past and overcome your mistakes and errors. HTML is the markup language to design and implement web pages. HTML is constituted by its elements called "tag", such as p tagbody tagb tag etc. We use these tags as requirement. When we walk for experiencing HTML, we always mention these HTML tags because tags are primary unit to implement HTML in web documents. The most important tags are html, body, head title, image, table, line break, horizontal rule, paragraph, list, anchor and heading. Generally, with the help and support of above mentioned elements, one can create web document easily but there are more elements lies in the category of HTML elements, so will taste little about above mentioned important tags.

HTML Table :

In this article, we are only for exploring the ideas with the help and assistance of our beneficial experience in HTML. So we are talking and discussing about HTML table. To grab the ideas of table, first think and analyze for tables. "Tables are just like the container for data and information and table used to arrange data in convenient manner".

HTML Image :

If someone desire to put picture in web document then think about the HTML image. To reveal the experience in HTML, we are taking the participation in discussion about HTML images. Images are frequently used in web pages, it's easily and beneficial way to fill the document and do not forget to mention alt attribute in HTML image for SEO purpose.

HTML Paragraph :

while experiencing HTML, it's becomes milestone to share the ideas of HTML paragraph. Generally web pages are divided into paragraph to fit predefined layout. If one want his pages are smooth for accessing the website then always use paragraph intelligently.

HTML Heading :

Now we go through HTML heading, mostly we use HTML heading to write content in bold and large font ie for heading purpose. There are six type of heading elements available and they are h1h2,h3h4h5 and h6. These headings are in series and in decreasing order ie h1 used for largest font and h6 used for smallest font.

HTML Anchor :

HTML anchor used to connect one document to another document on the web. While thinking aboutHTML anchor and sharing the HTML experience, it is necessary to spread the idea of anchors. Internet is just like bunch of web pages connecting to each other. Web pages are connected by anchor element. So if you want to move on another page always use anchor tag in your coding.

Cascading Style Sheet :

You are not only bond for HTML but you need to explore your ideas, capabilities of CSS. Yes, CSS (cascading style sheet) used to set layout and styles of the web pages, again i would like to say that combination of HTML and CSS makes pages stylish. On the way of experiencing HTML we always move around CSS. So at this point of article I will recommend that it is always a good idea to implement CSS in HTML document.


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: