List Today we are going to talk about the List. Question arises what is List ? A list is a collection of items. There are five types of list in HTML They are defined below Ordered List Unordered List Directory List Definition List Menu List Ordered List If you want to display items in a numbered list like 1,2,3,... or A,B,C... or i,ii,iii.... or I,II,III... or a,b,c....... Ordered List starts with the <ol> tag and ends with the </ol> tag. Each item starts with the <LI> tag. It is also called the Numbered List. Tags of Ordered List <ol></ol> <li></li> Attributes of Ordered List Attributes Value Description Type “1” or “I” or “I” or “a” or ”A” It specifies type of numbering's. By default the numbering Start Value To specify the starting point of the numbering. Example <html> <head> <title> ordered list </title>
How to create HTML Form - II In this tutorial, we will learn about How to create HTML Form . So far we have discussed how to create a frame , tables , List , insert Images , Linking in HTML etc. HTML Form is one of the most important part of the websites Every website has Contact forms or feedback forms.. Filling the Digital forms saves time, cost of printing, and paperwork. Submit Button Submit button It is used for submitting the form data to the server page. Example: How to create form - Submit button Output is: How to create form- Sumit Button <Select></Select> <select></select> It is used to create Popup menu and a List.<option></option> is used to define the option in the drop-down menu or the list. Attributes of <select></select> Name = name - Name of the drop down menu or list Size= value - To specify the number of visible values. Selected - To define Pre-selected item. Multi