web developement vocab

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:05 AM on 9/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Nesting

Placing one element inside another, like boxes inside boxes.

2
New cards

Parent element

An element that contains another element.


3
New cards

Child Element

An element contained directly inside another.


4
New cards

Sibling Element

Two or more elements that share the same parent, sitting side by side at The same level.

5
New cards

Hyperlink

Clickable text or an image that takes you somewhere else.


6
New cards

Alt text

text The description supplied by an image's alt attribute It is read aloud by screen readers and shown when an image fails to load. Every meaningful image needs one.


7
New cards

Semantic HTML

Choosing elements that match the meaning of the content


8
New cards

Render

What a browser does when it reads your HTML and draws the finished page on screen.

9
New cards

HTML

HyperText Markup Language. The language used to write the structure and content of every web page.

10
New cards

Markup

Labels added around text to tell a computer what each part of the document is.

11
New cards

Tag

The bracketed label that marks where something begins or ends:


12
New cards

Element

An opening tag, its content, and its closing tag taken together as one unit.


13
New cards

Content

Whatever sits between the opening and closing tags.


14
New cards

Attribute

extra information written inside an opening tag,


15
New cards

Value

The part of an attribute after the equals sign, wrapped in quotation marks.


16
New cards

Void Element

An element with no content and therefore no closing tag,


17
New cards

DOCTYPE

The line at the very top of a file. It tells the browser to read the page as modern HTML. It is a declaration, not an element.


18
New cards

Head

  1. The head element. Holds information about the page — its title, character set, links to stylesheets. Nothing inside it appears on screen.


19
New cards

Body

The body element. Holds everything a visitor actually sees on the page.


20
New cards

Heading

A title or subtitle, written with <h1> through <h6>, <h1> is the most important.

Headings should descend in order and not be chosen for their size.