part 1 Flashcards
1
Q
Is HTML technically a programming language?
A
No, HTML is technically a markup language.
2
Q
The head element may contain:
A
the website’s title, CSS styles, info for search engines & more
3
Q
The body element may contain:
A
text, images, lists, videos, and so much more.
4
Q
How many different heading (such as h1) elements are there?
A
6 different headings
5
Q
For bold text, you use:
A
<strong>text</strong>
6
Q
What is an attribute?
A
Additional info about an element
7
Q
What is the attribute for indicating the image path in an < img > element?
A
src
8
Q
What is an external link?
A
A link to a website that isn’t part of our project
9
Q
What do we have to include into the opening tag of a link that should open in a new tab?
A
target=”_blank”