HTML Revision
HTML Revision
applications. It describes the structure of a web page semantically and originally included cues for the
appearance of the document.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>: This is the document type declaration and it helps with the browser compatibility.
<head>: The head element contains meta-information about the HTML page like its title.
<title>: The title element specifies a title for the HTML page, which is shown in the browser’s title bar or
page’s tab.
<body>: The body element contains the content of the page, such as text, images, etc.
<h1>: This is a heading element. HTML headings are defined with the <h1> to <h6> tags.
Paragraph: <p>
Links: <a>
Images: <img>
Divisions: <div>
Spans: <span>
Each of these elements has specific attributes and uses, which you can learn more about as you delve
deeper into HTML.HTML (HyperText Markup Language) is the standard markup language for creating
web pages and web applications. It describes the structure of a web page semantically and originally
included cues for the appearance of the document.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>: This is the document type declaration and it helps with the browser compatibility.
<head>: The head element contains meta-information about the HTML page like its title.
<title>: The title element specifies a title for the HTML page, which is shown in the browser’s title bar or
page’s tab.
<body>: The body element contains the content of the page, such as text, images, etc.
<h1>: This is a heading element. HTML headings are defined with the <h1> to <h6> tags.
HTML elements are represented by tags. HTML tags label pieces of content such as “heading”,
“paragraph”, “table”, etc. Browsers do not display the HTML tags, but use them to render the content of
the page.
Paragraph: <p>
Links: <a>
Images: <img>
Divisions: <div>
Spans: <span>
Each of these elements has specific attributes and uses, which you can learn more about as you delve
deeper into HTML.HTML (HyperText Markup Language) is the standard markup language for creating
web pages and web applications. It describes the structure of a web page semantically and originally
included cues for the appearance of the document.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>: This is the document type declaration and it helps with the browser compatibility.
<head>: The head element contains meta-information about the HTML page like its title.
<title>: The title element specifies a title for the HTML page, which is shown in the browser’s title bar or
page’s tab.
<body>: The body element contains the content of the page, such as text, images, etc.
<h1>: This is a heading element. HTML headings are defined with the <h1> to <h6> tags.
HTML elements are represented by tags. HTML tags label pieces of content such as “heading”,
“paragraph”, “table”, etc. Browsers do not display the HTML tags, but use them to render the content of
the page.
Paragraph: <p>
Links: <a>
Images: <img>
Divisions: <div>
Spans: <span>
Each of these elements has specific attributes and uses, which you can learn more about as you delve
deeper into HTML.