Implementation Flashcards

To revise the implementation segment of WDD.

You may prefer our related Brainscape-certified flashcards:
1
Q

What does the tag contain?

A

Banner, title, javascript, local CSS

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

What is the ?

A

Navigation Bar

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

What are tags such as , , , and called?

A

These tags are referred to as semantic elements.

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

What are semantic elements?

A

Semantic elements are elements which describe the probable content they will contain with the name of their tags. When tag names don’t make purpose/content clear they are referred to as non-semantic.

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

What is Javascript used for?

A

Javascript is used to implement interactive web content.

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

How are Javascript actions executed?

A

Javascript actions are executed by:
Referring to the element containing the event
Referring to a different element by id
Calling a function containing the actions

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

Write a script that would change a texts colour when the text is hovered over.

A

<p></p>

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

What is the tag to trigger a script when an element is clicked on?

A

the onclick element triggers a script when the element it is linked to is clicked on.

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