Video Notes: HTML Images, Tables, and Forms

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering HTML concepts from the video: embedding images, table structure, and basic form handling with PHP.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

images folder

A folder designated to store image files in a web project (recommended practice).

2
New cards
tag

HTML element used to embed an image into a webpage.

3
New cards

src attribute

Attribute of the img tag that specifies the path or URL of the image to display.

4
New cards

JPEG

A common image file format with the .jpeg or .jpg extension.

5
New cards

local image reference

Referencing an image from your project folder (e.g., images/tree.jpeg) rather than an online URL.

6
New cards

external image link

An image reference that loads from an online URL rather than a local file.

7
New cards

th

Table header cell; defines a header for a column in an HTML table.

8
New cards

td

Table data cell; holds the content for a single table column in a row.

9
New cards

label element

HTML element used to label a form control for accessibility and clarity (e.g., labels for inputs).

10
New cards

input element

HTML form control used to collect user data from a form.

11
New cards

input type="text"

A single-line text input field in an HTML form.

12
New cards

name attribute

Attribute that assigns a key to a form control's submitted value, used by server-side scripts to access data.

13
New cards

form

HTML container that groups input controls and defines how data is submitted.

14
New cards

PHP back end

Server-side scripting language that processes form submissions and reads data via the input names.

15
New cards

unique name

Each form input should have a distinct name so submitted data can be distinguished on the server.

16
New cards

first name label

Label text describing the text input for a person's first name in a form.