topic 11 Flashcards

(15 cards)

1
Q

what is semantic markup

A

Semantic markup means using HTML elements that clearly describe their meaning in both human and machine-readable ways

✅ It helps:

Browsers understand the structure of a webpage.

Search engines improve indexing and SEO.

Assistive technologies (like screen readers) provide meaningful navigation for users with disabilities

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

what is the <header>

A

Represents introductory content or a group of navigation links

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

what is <footer>

A

defines bottom section of a page

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

what is <nav>

A

Identifies the main navigation links

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

what is <article>

A

Represents independent content that can stand alone

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

<aside>
</aside>

A

For side content like ads, tips, related links, or extra info

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

what is <section>

A

A thematic grouping of content, often with a heading

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

what is <main>

A

Represents the main content of the page

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

what is <div>

A

defines a division or a section in an HTML document

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

what is non semantic grouping?

A

elements with no semantic meaning. you can still group and style content using <div> and <span></span>

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

what is <span></span>

A

Used to style or manipulate inline text

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

how does semantic tags help with SEO

A

Improving how your site appears in search results.

Enhancing accessibility and performance.(content is properly displayed across various devices. )

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

examples of semantic tags to help SEO

A

<strong>
<em>
<abbr></abbr></em></strong>

<address>
</address>

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

what are the self-contained content tags?

A

<figure>
<figcaption>
Used to group media content with its description.
</figcaption></figure>

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

what is WAI-ARIA

A

WAI-ARIA stands for Web Accessibility Initiative – Accessible Rich Internet Applications.

It adds extra semantic meaning especially for users with screen readers and other assistive tools.

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