A. Identify the function of the following tags.

Answer:
Example
A simple HTML document, with a <title> tag inside the head section:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title of the document</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
More "Try it Yourself" examples below.
Definition and Usage
The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body>
Explanation:
correct me if I wrong