Implementation Flashcards
To revise the implementation segment of WDD.
What does the tag contain?
Banner, title, javascript, local CSS
What is the ?
Navigation Bar
What are tags such as , , , and called?
These tags are referred to as semantic elements.
What are semantic elements?
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.
What is Javascript used for?
Javascript is used to implement interactive web content.
How are Javascript actions executed?
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
Write a script that would change a texts colour when the text is hovered over.
<p></p>
What is the tag to trigger a script when an element is clicked on?
the onclick element triggers a script when the element it is linked to is clicked on.