Solutions
<h1> to <h6> - ANSWER✔✔-The <h1> to <h6> tags are used to define
HTML headings.
<h1> defines the most important heading. <h6> defines the least important
heading.
<p> and </p> - ANSWER✔✔-The <p> tag defines a paragraph.
Browsers automatically add some space (margin) before and after each <p>
element. The margins can be modified with CSS (with the margin
properties).
<a href="www.website.com"> link text here <a> - ANSWER✔✔-The <a>
tag defines a hyperlink, which is used to link from one page to another.
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 1/7
, <img src="URL or file reference"> - ANSWER✔✔-The <img> tag defines
an image in an HTML page.
The <img> tag has two required attributes: src and alt.
Note: Images are not technically inserted into an HTML page, images are
linked to HTML pages. The <img> tag creates a holding space for the
referenced image.
Tip: To link an image to another document, simply nest the <img> tag
inside <a> tags.
<head> - ANSWER✔✔-The <head> element is a container for all the head
elements.
The <head> element must include a title for the document, and can include
scripts, styles, meta information, and more.
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 2/7