Select Page
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...
Primitive Data Types in Java

Primitive Data Types in Java

Primitive Data Types in Java Java has eight (8) primitive data types. Variables are declared to be one of the data types in Java. The data type of a variable determines what value can be stored in it.  comment(s) Java has eight (8) primitive data types. A variable is...
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...