HTML Tags Notes
HTML Tags Notes
HTML (HyperText Markup Language) is the standard language for creating webpages. It uses various tags to
define elements such as text, images, and links. This document covers:
The <img> tag is used to embed images into a webpage. It is a self-closing tag.
Attributes:
Image Example:
The <font> tag is used to change the font style, size, and color. It is deprecated in HTML5.
Attributes:
Font Example:
Attributes:
Hyperlink Example:
<!DOCTYPE html>
<html>
<head>
<title>HTML Example</title>
</head>
<body>
</body>
</html>
Conclusion
HTML Tags: <img>, <font>, <a> (Hyperlink)
These tags enhance both the functionality and user experience of webpages.