You are on page 1of 1

POINTERS TO REVIEW IN ICF 9

 hyperlink – a software functions that allows viewers of an HTML document to navigate thereby to another HTML
document or file.
 vlink=”green” - indicates the color of hyperlink text within the document, which corresponds to documents already
visited by the browser
 alink=”blue” – indicates the color of hyperlink text while the text is selected
 <a> - is short for anchor, it uses to initialize hyperlink options of the HTML tags with closing tag </a>
 <hr> - inserts a horizontal ruler within a HTML document
 <hr size=”n”> - sets the height of the ruler, measured in pixels
 <hr width=”n”> - sets the width of the ruler, measured in percent
 <hr noshade> - creates a ruler without a shadow
 <hr align=”n”> - sets the alignment of the horizontal ruler (right, left, center)
 Three types of marquee behavior: scroll, slide and alternate
 <marquee> - displays a scrolling text message within a document
 <marquee behavior=”n”> - indicates the type of scrolling
 <marquee bgcolor=”n”> - specifies the background color of the marquee
 <marquee height=”n”> - specifies the vertical dimension of the marquee in pixels
 <marquee hspace=”n”> - specifies the size of the margins to the left and right of the marquee
 Steps in creating a link in HTML
1. Create your tags
2. Add your href attribute
3. State your destination
4. Add a visual or display text
5. Check your link
 Center aligned horizontal ruler with the width of 40
o <hr width=”40%” align=”center”> </hr>
 Text moving up and down alternately from left to right on its 30% height
o <marquee direction=”up” behavior=”alternate” height=”30%”> Text </marquee>
o <marquee direction=”right” behavior=”alternate” height=”30%”> Text </marquee>
 No shadow horizontal ruler with 10 pixels in height
o <hr noshade size=”10”> </hr>
 Text moving to the right
o <marquee direction=”right”> Text </marquee>
 Sample of Creating the complete HTML structure/document
o Title: 3rd PT
o Heading: ICF (Largest text, moving to the right with text background color of red)
o No shade horizontal ruler in 15 pixels in height
o SHAWN RAFAEL R. VILLETE ICF TEACHER scrolling up with 20% height
o Yellow horizontal ruler with 20 pixels in height
o Full Name of your adviser moving to the left
o Blue centered horizontal ruler with 20 pixels height and 50% in width
o Your Full Name moving up and down alternately from left to right on 20% height
Answer:
<html>
<head>
<title> 3rd PT </title>
</head>
<body>
<h1> <marquee direction=”right” bgcolor=”red”> ICF </marquee> </h1>
<hr noshade size=”15”> </hr>
<marquee behavior=”scroll” direction=”up” height=”20%”> SHAWN RAFAEL R. VILLETE ICF TEACHER
</marquee>
<hr color=”yellow” size=”20”> </hr>
<marquee> MARIBEL R. VILLETE </marquee>
<hr color=”blue” align=”center” size=”20” width=”50%”> </hr>
<marquee behavior=”alternate” direction=”up” height=”20%”>
<marquee behavior=”alternate” direction=”right” height=”20%”>
SCARLETT REIGN R. VILLETE </marquee> </marquee>
</body>
</html>

You might also like