You are on page 1of 1

Course N1: HTML

Part 1 : HTML Tutorial


HTML Attributes provide additional information about HTML elements.
The lang Attribut : The document language can be declared in the <html> tag.
Declaring a language is important for accessibility applications (screen readers) and
search engines:

<!DOCTYPE html>
<html lang="en-US">
The HTML title attribute provides additional "tool-tip" information
Headings: Search engines use them to index the structure and content of web pages.
The HTML <head> element has nothing to do with HTML headings. It contains meta
data (Meta data are not displayed) and it is placed between the <html> tag and the
<body>.

You might also like