Web Programming Fundamentals (Weeks 1–3)

Web Programming Fundamentals (Weeks 1–3)

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

David Konneh

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What core languages are used for front-end web development, and what is the primary role of each?

Back

The structure of a web page is described using HTML (Hypertext Markup Language). The style (colors, fonts, layout, and spacing) is described using CSS (Cascading Style Sheets).

2.

FLASHCARD QUESTION

Front

What is the purpose of the declaration found at the beginning of an HTML file?

Back

It is a doctype declaration. Its purpose is to tell the web browser what version of HTML is being used, specifically indicating that the page is written using HTML 5, the latest version of HTML.

3.

FLASHCARD QUESTION

Front

If you wanted to create the largest possible heading and a paragraph of text, which tags would you use for each?

Back

The largest possible heading is created using the

tag. Paragraphs of text are created using the

tag.

4.

FLASHCARD QUESTION

Front

What is the name for the tree-like structure used to visually organize and understand the nested relationship of all HTML elements?

Back

This structure is called the Document Object Model (DOM). It describes how all of the HTML elements are related to each other, indicating which elements are nested inside others.

5.

FLASHCARD QUESTION

Front

When linking to another page, what HTML tag and essential attribute are used?