HTML Attributes
Duration: 12 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 attributes as special properties that provide additional information about elements. The instructor begins by writing a basic <h1>Hi</h1> tag, then draws a box with lines to visually represent attributes as 'additional info.' A slide defines HTML attributes, emphasizing that they are always written inside the opening tag and most use name-value pairs with values in double quotes. The syntax <tagname attribute="value">Content</tagname> is shown, followed by a multiple-attribute example using an <img> tag with src, alt, width, and height. A reference table lists common attributes (id, class, style, title, href, src) with descriptions and syntax. The lesson then focuses on the style attribute, showing inline CSS examples like color: red; and background-color: yellow;, with a full code example applying styles to body and p tags. Finally, the title attribute is explained as providing tooltip information on hover, with syntax <tagname title="Tooltip Text"> Content </tagname> and examples using h2 and p tags.
Chapters
0:00 – 2:00 00:00-02:00
The instructor writes an opening tag '<h1>' and closing tag '</h1>', then adds text 'Hi' between them to form '<h1> Hi </h1>'. A box with lines is drawn next to the tag, and an arrow from 'Attribute' points to 'additional info.' on screen, visually defining the concept.
2:00 – 5:00 02:00-05:00
A slide titled 'HTML Attributes' lists rules: attributes are special properties, always written inside the opening (start) tag, most use name-value pairs, and values are usually in double quotes. The syntax '<tagname attribute="value">Content</tagname>' is shown, followed by a multiple-attribute example: '<img src="flower.jpg" alt="Flower" width="300" height="200">'. Red circles and underlines highlight key terms.
5:00 – 10:00 05:00-10:00
A reference table with columns 'Attribute', 'Description', 'Used in', and 'Syntax / Example' lists rows for id, class, style, title, href, and src. The lesson then focuses on the style attribute with syntax '<tagname style="property:value;">', showing examples like 'color: red;', 'background-color: yellow;', and 'font-size: 20px;'. A full code example applies '<body style="background-color:powderblue;">' with visual output displayed.
10:00 – 11:36 10:00-11:36
The title attribute is explained as providing additional information displayed as a tooltip when the user hovers over an element. The syntax '<tagname title="Tooltip Text"> Content </tagname>' is shown, with examples: '<h2 title="I'm a header">The title Attribute</h2>' and '<p title="I'm a tooltip">Mouse over this paragraph...</p>'. Red annotations highlight 'tooltip' and connect code to rendered output.
The lecture progresses from basic tag structure to attribute syntax, then specific attributes. The core idea is that attributes live inside the opening tag as name-value pairs. The style attribute demonstrates inline CSS, while the title attribute shows user-interaction behavior (tooltips). The reference table serves as a quick lookup for common attributes. Key exam points: attribute placement (opening tag only), name-value pair format, double quotes for values, and the specific functions of style (inline CSS) and title (tooltip on hover).