Things to remember HTML Flashcards

1
Q

What does HTTP stands for?

A

Hyper Text Transfer Protocol

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

How to open links in new tabs.

A

With the target=_blank attribute.

e.g.:
<a href:”www.xyz.de” target=_blank>xyz</a>

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

How to parse all HTML before executing java scripts?

A

defer (


This Boolean attribute is set to indicate to a browser that the script is meant to be executed after the document has been parsed

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

What does the async attribute do?

A

The async attribute loads and executes the script asynchronously with the rest of the webpage.

Similar to the defer attribute, the HTML parser will continue parsing the rest of the HTML as the script is downloaded in the background.

However, with the async attribute, the script will not wait until the entire page is parsed: it will execute immediately after it has been downloaded.

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

How do you create an input field that can be used in a form?

A

> form action=”/restaurants<
label for=”name-input”>Name</label<
input id=”name-input” type=”text” name=”name”<
input type=”submit” value=”Submit”<
form<

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