1/15
A set of vocabulary flashcards covering HTML concepts from the video: embedding images, table structure, and basic form handling with PHP.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
images folder
A folder designated to store image files in a web project (recommended practice).
HTML element used to embed an image into a webpage.
src attribute
Attribute of the img tag that specifies the path or URL of the image to display.
JPEG
A common image file format with the .jpeg or .jpg extension.
local image reference
Referencing an image from your project folder (e.g., images/tree.jpeg) rather than an online URL.
external image link
An image reference that loads from an online URL rather than a local file.
th
Table header cell; defines a header for a column in an HTML table.
td
Table data cell; holds the content for a single table column in a row.
label element
HTML element used to label a form control for accessibility and clarity (e.g., labels for inputs).
input element
HTML form control used to collect user data from a form.
input type="text"
A single-line text input field in an HTML form.
name attribute
Attribute that assigns a key to a form control's submitted value, used by server-side scripts to access data.
form
HTML container that groups input controls and defines how data is submitted.
PHP back end
Server-side scripting language that processes form submissions and reads data via the input names.
unique name
Each form input should have a distinct name so submitted data can be distinguished on the server.
first name label
Label text describing the text input for a person's first name in a form.