HTML Link
Duration: 10 min
This video lesson is available to enrolled students.
Enroll to watch — TPSC Assistant Technical Officer (ATO - CS) 2026
AI summary & chapters
AI Summary
An AI-generated summary of this video lecture.
This lecture introduces HTML hyperlinks, beginning with a whiteboard sketch that visually connects the word “Google” to a box using an arrow, then transitioning to slides defining hyperlinks and the anchor tag. The instructor explains that a hyperlink is a clickable element allowing users to navigate between web pages or open files, and presents the anchor tag syntax: <a href="URL">Link Text</a>. A practical example, <a href="https://www.google.com">Visit Google</a>, is annotated to distinguish the opening tag, href attribute, and link text. The lesson then differentiates external links (e.g., Wikipedia) from internal links, noting that the vlink attribute was used in older HTML versions. The final segment covers the target attribute, which determines where a linked page opens, listing four values: _self (default), _blank, _parent, and _top. A complete HTML document example demonstrates target="_blank" with the link text “Visit here!”, shown alongside a rendered browser preview. Red annotations and checkmarks emphasize the container role of <a> and </a> tags, reinforcing how code maps to rendered output.
Chapters
0:00 – 2:00 00:00-02:00
The instructor writes “HTML Link” on a whiteboard and draws a diagram with the word “Google,” horizontal lines representing text, a curly brace, and an arrow pointing to a box. The word “Link” is circled, and the instructor writes <a> next to it, labeling it as “anchor” and adding “click here <a>” to illustrate practical usage.
2:00 – 5:00 02:00-05:00
A slide titled “Links” defines a hyperlink as a clickable link for navigating web pages or opening files. The anchor tag syntax <a href="URL">Link Text</a> is displayed, with the instructor underlining “hyperlink,” “navigate,” and “href.” An example <a href="https://www.google.com">Visit Google</a> is annotated, labeling <a> as the opening tag and href as the URL destination.
5:00 – 10:00 05:00-10:00
The instructor presents an external link example <a href="https://www.wikipedia.org">Visit Wikipedia</a>, annotating it as “external” and contrasting it with internal links. A note mentions the vlink attribute in older HTML versions. The slide then explains the target attribute, listing _self (default), _blank, _parent, and _top. A code example <a href="https://www.google.com/" target="_blank">Visit here!</a> is shown with a rendered preview, and diagrams illustrate _self versus _blank behavior.
10:00 – 10:14 10:00-10:14
The final slide shows a complete HTML document with <!DOCTYPE html>, <html>, <body>, an <h2> reading “The target Attribute,” and the link line, each marked with a red checkmark. Red annotations label <a> and </a>, adding the word “container” with an arrow between them. The right-hand preview displays the heading and the active link “Visit here!” with red arrows pointing to it.
The lecture progresses from conceptual visualization to technical implementation. The whiteboard sketch establishes the intuitive idea of a link as a connector between elements, using arrows and boxes to represent navigation. This transitions into formal definitions on slides, where the anchor tag syntax is broken down component by component: the <a> opening tag, href attribute for destination URL, and link text. The instructor emphasizes practical examples (Google, Wikipedia) to ground abstract syntax in real-world usage. A key distinction is made between external and internal links, with a historical note about the vlink attribute. The target attribute section introduces four values for controlling where links open, with _self as default and _blank for new windows/tabs. The final code example demonstrates a complete HTML document, using checkmarks and annotations to reinforce how the <a> tag acts as a container for link content. The consistent use of red underlining, arrows, and handwritten annotations throughout the lecture serves to highlight key terms and clarify the relationship between code syntax and rendered output.