HtML tags
<!DOCTYPE html>
First line in an HTML5 document. Tells web browsers that this document is an HTML5 document.
<!DOCTYPE html> <html> <head> <title>Page Title</title></head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
HTML Page Structure
<p>
The ____ element defines a paragraph
<head>
The ______ element contains meta information about the HTML page
<h1>
The _______ element defines a large heading
<title>
The _______ element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
<html>
The ________ element is the root element of an HTML page
<body>
The _________ element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.