< html > - ANSWER✔✔-Contains all other HTML tags (except for the
!DOCTYPE tag which is located before the opening html tag), [HTML Tag]
< body > - ANSWER✔✔-The HTML <body> tag is used for indicating the
main content section of the HTML document. The <body> tag is placed
between the </head> and the </html> tags, [HTML Tag]
< p > - ANSWER✔✔-The <p>(paragraph) element acts as a container for
the text between the start tag <p> and the end tag </p>, [HTML Tag]
href - ANSWER✔✔-hypertext reference, [attribute]
style - ANSWER✔✔-HTML provides a "style" attribute on most elements,
to hold a fragment of a style sheet that applies to those elements. One of the
possible style sheet languages is CSS, [attribute]
HTML Element - ANSWER✔✔-An HTML element is everything from the
start tag to the end tag, eg: <p>this is the paragraph element</p>,
[general]
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 1/14
, HTML Tags - ANSWER✔✔-Keywords surrounded by angle brackets, like
<html>(also known as HTML markup tags), [general]
< !--...-- > - ANSWER✔✔-Tag is used for creating comments within your
HTML code, [HTML Tag]
< !doctype > - ANSWER✔✔-Used for specifying which version of HTML
the document is using. This is referred to as the document type declaration
(DTD), [HTML Tag]
< h1 > - ANSWER✔✔-Used for specifying level 1 headings. There are 6
levels of headings, browsers typically render the various headings in
different sizes, with h1 being the largest (most important) and h6 being the
smallest (least important), [HTML Tag]
< h2 > - ANSWER✔✔-Used for specifying level 2 headings. There are 6
levels of headings, browsers typically render the various headings in
different sizes, with h1 being the largest (most important) and h6 being the
smallest (least important), [HTML Tag]
< h3 > - ANSWER✔✔-Used for specifying level 3 headings. There are 6
levels of headings, browsers typically render the various headings in
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 2/14