Web dev vocab quiz/test

0.0(0)
Studied by 2 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 2:08 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

HTML

HyperText Markup Language. The language used to write the structure and context of every Web page. It is not a programming language - it describes a document rather than giving instructions.

2
New cards

Markup

Labels added around text to tell a computer what each part of the document is. Mars is just a word, <h1>Mars</h1> is a heading.

3
New cards

Tag

the bracketed label that marks where something begins or ends; <p> is an opening tag, </p> is a closing tag. the closing tag has a forward slash

4
New cards

element

an opening tag, its content, and its closing tag taken together as one unit. <p> Mars is red </p> is an element.

5
New cards

content

whatever sits between the opening and closing tags. it can be text, other elements, or both

6
New cards

attribute

extra information written inside an opening tag, always as name= “value”. <a href=”about.html”>, href is the attribute name

7
New cards

value

the part of an attribute after the equals sign, wrapped in quotation marks. href= “about.html” the value is about.html

8
New cards

void element

an element with no content and therefore no closing tags, such as <img> </br>

9
New cards

DOCTYPE

the line <!DO TYPE html> at the very top of a file. it tells the browser to read the page as modern HTML

10
New cards

Head

<head> holds information about the page - its title, character set

11
New cards

body

the <body>, holds everything a visitor actually sees ont he page

12
New cards

heading

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

13
New cards

nesting

placing one element inside another, like boxes inside boxes.

14
New cards

parent element

an element that contains another element <p><em>red</em><p> <p> is parent

15
New cards

child element

an element contained directly inside another.

16
New cards

sibling elements

two or more elements that share the same parent, sitting side by side at the same level

17
New cards

hyperlink

clickable text or an image that takes your somewhere else

18
New cards

alt text

the description supplied by an images alt attribute, it is read aloud by screen readers and shown when an image fails to load.

19
New cards

semantic HTML

choosing elements that match the meaning of the content <nav. for navigation <button> button

20
New cards

render

what a Bowser does when it reads your HTML, and draws the finished page on screen.