Hci Reviewer
Hci Reviewer
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
The <img> tag creates a holding space for the referenced image. The <img> tag is empty, it contains attributes only, and
does not have a closing tag. The <img> tag has two required attributes:
*src* - Specifies the path to the image
The required src attribute specifies the path (URL) to the image.
*alt* - Specifies an alternate text for the image alt attribute provides an alternate text for an image, if the user for some
reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).
CSS COLORS
CSS colors are used to set the color of different parts of a webpage, like text, background, and borders. This helps
make the page look more attractive and easier to read. You can define colors using names, hex codes, RGB
values, and more.