HTM38


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

      Hex codes, not names, should be used to specify colors in HTML tags. A color name may not specify a unique color. Each color has a unique hex value that is preceded by a pound (#) sign when it is used in HTML. Hex values 00 to FF corresponds to decimal values 0 to 255.


..Back to the top..



OUTPUT:


HTM38. Using definition List for course descriptions

Welcome to our online course catalog

Since last term, we have added ne exciting courses
that cover a wide spectrum of interests and market needs.
Here are descriptions some of our new exciting courses.

Surfing the Web
This course is designed for beginners. It shows how to surf the Web effectively using search tools such as search engines, metasearch engines, smart browsing, Web portals, and channels.

Javascript
This course covers the concepts of OOP and how they relate to Java. It also covers Java Swing package and graphics tools.

Networking
This course covers the fundamentals of networking and protocols. It covers both LANs and WANs.


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>HTM38. Using definition List for course descriptions</TITLE>
</HEAD>
<BODY BGCOLOR = #FFFF00 TEXT = #8E2323 LINK = #FF0000 ALINK = #00FF00 VLINK = #000000>
<H2><CENTER><FONT COLOR = �blue�>Welcome to our online course catalog
</FONT></CENTER></H2>
<P>
Since last term, we have added ne exciting courses

that cover a wide spectrum of interests and market needs.

Here are descriptions some of our new exciting courses.
<DL>
<DT><FONT COLOR = red>Surfing the Web</FONT>
<DD>This course is designed for beginners. It shows how to surf the Web effectively using search tools such as search engines, metasearch engines, smart browsing, Web portals, and channels.
<P>
<DT><FONT COLOR = red>Javascript</FONT>
<DD>This course covers the concepts of OOP and how they relate to Java. It also covers Java Swing package and graphics tools.
<P>
<DT><FONT COLOR = red>Networking</FONT>
<DD>This course covers the fundamentals of networking and protocols. It covers both LANs and WANs.
</DL>
</BODY>
</HTML>


..Back to the top..