Select Page
Selecting a browser for HTML5 development

Selecting a browser for HTML5 development

Selecting a browser for HTML5 development Google’s Chrome browser is simple to use and has the most up-to-date HTML5 features making it easier for developers. It also has pretty good developer tools. We recommend you use this browser to learn HTML5  comment(s)...
HTML form tag

HTML form tag

HTML form tag The <form></form> tag is a container for form elements. The form element itself isn’t usually a visible part of the page. It can however be with the help of CSS. nanadwumor  comment(s) HTML <form> tag is used to collect data from users...
The header element in HTML5 – How to use it

The header element in HTML5 – How to use it

Elements | html The header element in HTML5 – How to use it The <header> element is a new HTML element and was introduced in HTML5. It can be used as a header for a whole page (the most common usage), but can also be used as the header for an article or...
How To Make Lists Of Links

How To Make Lists Of Links

How To Make Lists Of Links If you want to create a list of unordered links, you nest the <a> tag in <ul>. Similarly, to create a list of ordered links, you nest the <a> tag in <ol> tag.  comment(s) <a> nested in <ul> tag creates...