Note 13.7.1.
If you work in a group, have only one member of the group fill in the answers on this page. You will be able to share your answers with the group at the bottom of the page.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>The First Page</h1>
<p>
HTML is the language used to create web pages. Browsers
know how to read and display HTML.
</p>
</body>
</html>
h2
and h3
header to the HTML above after the paragraph.<!DOCTYPE html>
, indicates that this is an HTML document. While it is best to include this tag, the page will typically display fine even if you don't include it.html
tag is the root (start) tag for the document.head
tag contains meta information about the document such as the title
.body
tag contains the items that will be displayed.h1
tag is for a first-level (most important) header. There are additional types of headers: h2
, h3
, etc.p
tag indicates a paragraph of text.<html>
and ends with the end tag </html>
. Indentation isn't required, but makes it easier to read the HTML.<!DOCTYPE html>
<head>
My First Page</title>
The First Page</h1>
<p>
HTML is the language used to create web pages. Browsers
know how to read and display HTML.
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h2> Ordered List</h2>
<ol>
<li>First Item</li>
<li>Second Item</li>
</ol>
<h2>Unordered List</h2>
<ul>
<li>First Item</li>
<li>Second Item</li>
</ul>
</body>
</html>
<head>
and <body>
. The head contains meta information about the page including the page title. The body contains the elements that are displayed in the page such as the headers and paragraphs.a
(hyperlink) tag in the above structure?title
tag in the above structure?https://cspogil.org/Home
https://www.w3schools.com/html/