Select Page
Block And Inline Level Tags in HTML

Block And Inline Level Tags in HTML

Block And Inline Level Tags in HTML Block elements start on a new line and end with a carriage return. That’s, immediately after ending on a horizontal space, next block element goes to nest line. nanadwumor  comment(s) A block level element is like a...
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 Unordered List, ul tag, in HTML5

The Unordered List, ul tag, in HTML5

The Unordered List, ul tag, in HTML5 There are basically four types of markers used to list unordered list.  comment(s) <ul> tag in html is used to list items in no particular order The <ul> tag lists items and they are marked with bullets the type...
The ordered list, ol tag, in HTML5

The ordered list, ol tag, in HTML5

The ordered list, ol tag, in HTML5 An ordered list can be numerical or alphabetical. Typically, <ol> is rendered as a numbered list.  comment(s) <ol> tag in html is used to list items in order start attribute of <ol> defines where marker value...