HTML and CSS Flashcards

1
Q

What is the purpose of the <body> element in HTML?

A

The <body> element contains all visible HTML content that users should see.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the purpose of the <p> element in HTML?

A

The <p> element is for holding paragraphs of text in blog posts, news articles, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of the <a> element in HTML?</a>

A

The <a> element turns its contents into a link to other web pages or resources.</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of the <h1> element in HTML?

A

The <h1> element defines a top-level heading conveying the overall topic of the page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of the <form> element in HTML?

A

The <form> element defines a collection of form inputs for submitting to a form handler.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a block-level element?

A

A block-level element is an HTML element that takes up the full width available, starts on a new line, and typically structures the layout of a web page, such as <div>, <p>, <header>, and <section>.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Semantic HTML?

A

Semantic HTML introduces elements that describe their meaning in a human- and machine-readable way.

For example, <article>, <header>, and <footer> clearly define the content they enclose.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Give examples of non-semantic elements.

A

Non-semantic elements like <div> and <span> lack inherent meaning—they are merely containers.</span>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the key benefits of Semantic HTML?

A

Key benefits of Semantic HTML are accessibility, SEO, futureproofing, and maintainability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are text inputs used for?

A

Text inputs are for entering short pieces of text such as names or telephone numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are email inputs used for?

A

Email inputs are for entering email addresses and provide simple validation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the purpose of the alt attribute in HTML?

A

The alt attribute lets you add a text description to images, which can be read by screen readers for the benefit of users who are blind.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the content property define in CSS?

A

The content property defines what is rendered inside of pseudo-elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the margin property define in CSS?

A

The margin property defines the space between an element and those around it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the padding property define in CSS?

A

The padding property lets you increase the background area of an element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the border property define in CSS?

A

The border property lets you add a colored border around the outer edge of an element.

17
Q

What is one effective method to make a website fully responsive?

A

One effective method to make a website fully responsive is by using CSS media queries.

18
Q

What do media queries allow you to do?

A

Media queries allow you to apply different styles based on the device’s screen size, resolution, or orientation.

This ensures that your website adapts seamlessly to various devices like desktops, tablets, and smartphones.