The Internet and World Wide Web - Part2
The Internet and World Wide Web - Part2
ICT COMPETENCY
Unit 4: The Internet and World Wide Web (Part II)
Unit Learning Outcomes
• By the end of this unit, students will be able to:
• Describe Web development basic steps
• Identify Web 2.0 and online tools and resources relevant to their learning and
everyday use
<ol>
<li>Apply to school</li>
<li>Register for course</li>
<li>Pay tuition</li>
<li>Attend course</li>
</ol>
HTML
• The <ul> creates a bulleted list of items
• The default type is disc
• To contain items in the list, the <li> tag is used
• The tag is specified within the body section
• Example:
<ul>
<li>TCP</li>
<li>IP</li>
<li>HTTP</li>
<li>FTP</li>
</ul>
HTML
• The <dl> tag is used to create a description list (formerly known as
definition list)
• The <dt> tag is used to contain a term/phrase/sentence
• The <dd> tag contains a description of the term/phrase/sentence and
indents the text
• The tag is specified within the body section
• Example:
<dl>
<dt>IP</dt>
<dd>Internet Protocol</dd>
<dt>TCP</dt>
<dd>Transmission Control Protocol</dd>
</dl>
HTML
• The <a> tag is used to specify a link or anchor reference to a file or
page
• The <href> attribute is used to specify the destination of the file or page
• It can be either absolute (to another website) or relative (to another page
on the same site)
• The tag is specified within the body section
• Example: