HTML_Tags_and_Attributes_Complete_Notes
HTML_Tags_and_Attributes_Complete_Notes
The <FONT> tag is used in HTML to specify the appearance of the text.
Attributes:
- SIZE: Sets the size of the text (ranges from 1 to 7, with 3 as default).
Attributes of <OL>:
- `A`: A, B, C, ...
- `a`: a, b, c, ...
Attributes of <UL>:
- `disc` (default): ?
- `circle`: ?
HTML Tags and Attributes Notes
- `square`: ?
Example:
<DL>
<DT>HTML</DT>
<DT>CSS</DT>
</DL>
HTML allows adding multimedia elements like images and objects to web pages.
Attributes:
- ALIGN: Aligns the image relative to text (left, right, top, middle, bottom).
Attributes:
Hyperlinks in HTML are created using the <A> tag. It connects web pages or resources.
HTML Tags and Attributes Notes
Attributes of <A>:
- TARGET: Opens the link in a new tab (_blank) or same tab (_self).
Internal Links:
Attributes:
Example:
<TABLE BORDER="1">
<TR>
<TH>Name</TH><TH>Age</TH>
</TR>
<TR>
<TD>John</TD><TD>25</TD>
HTML Tags and Attributes Notes
</TR>
</TABLE>