3rd COMP 9 MODULE 3 - Week 5
3rd COMP 9 MODULE 3 - Week 5
COMPUTER GRADE 9
3rd Grading Period
Week 5
Module 3: LINKS
I. INTRODUCTION
The HTML <a> tag defines a hyperlink. It has the following syntax: <a href="url">link text</a>
The most important attribute of the <a> element is the href attribute, which indicates
the link's destination. The link text is the part that will be visible to the reader.
A. SPECIFIC OBJECTIVES:
The following objectives are expected to be attained by the learners at the end of
this module:
Identify opening and closing tags for links and its attributes.
Use link in linking webpages together.
Demonstrate how link tags work.
VI. PRE-ASSESSMENT
Choose the letter of the correct answer.
B. EXPLORE:
C. FIRM UP:
LINKS
- Are created using the <a> element which has an attribute called href.
- The value of the href attribute is the page that you want people to go to when they click
the link.
- If you want a link to open in a new window, you can use the target attribute on the
opening <a> tag.
- The value of this attribute should be _blank.
1. Open 2 notepad and save it with your nickname as a file name and the
other one with your fathers nickname
2. On the first notepad create a webpage with your picture and your full name
and the other one containing the lyrics of your favorite song.
3. Make a link to the two webpage u created.
4. Video your work
5. Submit via LMS (Ma’am Cruz: Please send it thru messenger)
E. TRANSFER:
Using activity no.1, link them to open new window and link them with
separate window
Video your work
Submit via LMS (Ma’am Cruz: Please send it thru messenger)
VIII. SUMMARY:
A link (short for hyperlink) is an HTML object that allows you to jump to a new location when
you click or tap it. Links are found on almost every webpage and provide a simple means of
navigating between pages on the web.
Links can be attached to text, images, or other HTML elements. Most text links are blue, since
that is standard color web browsers use to display links. However, links can be any color since
the style of the link text may be customized using HTML or CSS styles. In the early days of the
web, links were underlined by default. Today, underlining links is less common.
IX. VALUES INTEGRATION:
When a link is applied to an image, the link tag encapsulates, or surrounds the image tag. Since
the image tag is nested inside the link tag, the image itself becomes a link. This method can be
used to apply links to other elements such as <div> and <span> objects. However, since CSS
can be used to stylize a link, an <a> tag with a CSS class or ID attribute is often used in place
of a <div> or <span> tag.
X. POST ASSESSMENT