5 Web Scraping and APIs Flashcards

1
Q

What is meant by HTML being a “markup” language?

A

This it includes both the content you see on the screen (the text) along with built in instructions (the markup) for how the browser should show it. These instructions come in tags, which are wrapped in arrow brackets (<>).

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

What does <p> stand for in HTML?

A

Paragraph

<p>This text is a paragraph.</p>

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

What does <div> stand for in HTML?

A

this doesn’t really do anything directly, but they’re a way for web designer’s to divide up their HTML however they want to assign classes and ids to particular sections

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

What does <table> stand for in HTML?

A

tag that specifies the start of a table

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

What does <th> stand for in HTML?

A

Header in a table

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

What does <tr> stand for in HTML?

A

Denotes a table row

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

What does <td> stand for in HTML?

A

Table data

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

What does <a> stand for in HTML?</a>

A

link, always includes the attribute href, which specifies where the browser should go when you click on it

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