
Industry Certification Exam: Knowledge Pillars

Flashcard
•
Computers
•
8th Grade
•
Medium
Wayground Content
Used 1+ times
FREE Resource
Student preview

19 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What is HTML and its role in web development?
Back
HTML stands for Hyper Text Markup Language and it is used to Structure in web development.
2.
FLASHCARD QUESTION
Front
What are the main sections of an HTML document? The root element is <__HTML____>. The section for metadata (like title, links to CSS) is <__head____>. The section that contains content visible to users is <__body____>.
Back
The root element is <__HTML____>. The section for metadata (like title, links to CSS) is <__head____>. The section that contains content visible to users is <__body____>.
3.
FLASHCARD QUESTION
Front
List 5 basic HTML tags and describe their function:
: __Largest heading__ : __to write a short Paragraph__ : __link__
: __to place an image in a webpage__ : __unordered list__
Back
: __Largest heading__ : __to write a short Paragraph__ : __link__
: __to place an image in a webpage__ : __unordered list__
4.
FLASHCARD QUESTION
Front
What are the functions of the following attributes in HTML? id: __#id__ class: __.class__ src: __source of the link or an image__ href: __hyper reference__ alt: __alternate link__
Back
The functions of the attributes in HTML are as follows: id is used to uniquely identify an element, class is used to apply styles to a group of elements, src specifies the source of an image or link, href defines the hyperlink reference, and alt provides alternative text for an image.
5.
FLASHCARD QUESTION
Front
Best practices for writing semantic HTML: Why is it important to use semantic HTML? Forms tables, navigation links. ______________
Back
To improve SEO and accessibility
6.
FLASHCARD QUESTION
Front
Which HTML tag is used to embed an image?
Back
7.
FLASHCARD QUESTION
Front
How do you create a list and a table in HTML?
List:
- Unordered list: <______><______>...
- Ordered list: <______><______>...
Table: <______><______><______>...
Back
To create a list in HTML, you can use the
- tag for an unordered list and the
- tag for an ordered list. For a table, you can use the