Page 54 - TrackpadV5.1_class7
P. 54
<LI>Almonds</LI>
<LI>Apples</LI>
<LI>Cherries</LI>
<LI>Coconuts</LI>
<LI>Lychee</LI>
<LI>Oranges</LI>
<LI>Olive</LI>
<LI>Persimmons</LI>
</OL>
</BODY>
</HTML>
UNORDERED LISTS
An unordered list is used when the items in the list are not required to be in a specific order. It is
also called a bulleted list. An unordered list is enclosed within the <UL> ....... </UL> tag. Each item
in the list is given an <LI> tag, which specifies the list item.
Write HTML codes to print an unordered list.
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> Unordered List </TITLE> </HEAD>
<BODY>
<H2>People working in the field of public health:</H2>
<UL>
<LI>First responders</LI>
<LI>Restaurant inspectors</LI>
<LI>Health educators</LI>
<LI>Scientists and researchers</LI>
<LI>Nutritionists</LI>
<LI>Community planners</LI>
<LI>Social workers</LI>
<LI>Public health
physicians</LI>
</UL>
</BODY>
</HTML>
52 Pro (V5.1)-VII

