Introduction to Web Development: HTML, Images, File Paths, and GitHub

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

1/31

flashcard set

Earn XP

Description and Tags

Comprehensive flashcards covering the basics of HTML5 structure, web image formats and optimization, file path navigation, and the Git publishing workflow.

Last updated 2:56 PM on 6/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

32 Terms

1
New cards

HTML

HyperText Markup Language, the standard language used to create webpages by providing structure and content.

2
New cards

CSS

One of the three core web technologies, used for styling and determining the appearance of a webpage.

3
New cards

JavaScript

One of the three core web technologies, used to add interactivity and functionality to a webpage.

4
New cards

A declaration that tells the browser the document is an HTML5 document.

5
New cards

The root element that contains the entire webpage; the lang attribute specifies the page language.

6
New cards

An HTML element that contains information about the webpage, such as metadata, that is not displayed directly on the page.

7
New cards

An element that defines the character encoding used by the webpage.

8
New cards

An element that helps webpages display correctly on different devices by controlling the width and scale.

9
New cards

An element that sets the title shown in the browser tab.

10
New cards

An element that contains all visible webpage content such as headings, paragraphs, and images.

11
New cards

src

An attribute used in the tag that specifies the location of the image file.

12
New cards

alt

An attribute that provides alternative text for screen readers, SEO, and cases where an image fails to load.

13
New cards

href

The hyperlink reference attribute used in anchor tags to specify the destination URL.

14
New cards

Void elements

Elements such as that do not contain content and therefore do not require a closing tag.

15
New cards

JPEG/JPG

An image format best used for photographs and complex images, utilizing lossy compression to achieve smaller file sizes.

16
New cards

PNG

An image format best for graphics, logos, and transparent images, utilizing lossless compression.

17
New cards

GIF

An image format for simple graphics and animations, limited to a palette of 256256 colors.

18
New cards

WEBP

A modern image format that provides better compression than JPG and PNG, supporting both transparency and animation.

19
New cards

SVG

Scalable Vector Graphics, used for logos and icons because they can scale without losing quality.

20
New cards

Image Optimization

The three-step process of cropping, resizing, and reducing quality to improve performance and reduce page weight.

21
New cards

Course Image File Limit

The requirement that all images must be optimized and have a file size of less than 125kB125\,kB.

22
New cards

File path

A string that tells the computer or browser where to find a specific file.

23
New cards

Directory

Another term for a folder used in web development and software design.

24
New cards

Absolute Path

A file path that provides the complete location of a file, usually starting with a protocol like https://.

25
New cards

Relative Path

A file path that locates a file based on the location of the current file being edited.

26
New cards

./

A file path notation representing the current folder.

27
New cards

../

A file path notation used to move up one folder level toward the parent folder.

28
New cards

Commit

A snapshot of changes saved into the local Git repository.

29
New cards

Commit Message

A required description provided by the developer explaining what changes were made in a commit.

30
New cards

Push/Sync

The action of uploading committed changes from a local repository to GitHub to publish them online.

31
New cards

Pull

The action of downloading changes from the GitHub repository to the local computer.

32
New cards

GitHub Pages

A service that hosts and publishes a website directly from a GitHub repository.