HTML Fundamentals Lecture Flashcards

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/25

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers fundamental HTML concepts, history, web development divisions, document structure, and basic tools like VS Code as outlined in the module.

Last updated 10:41 AM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

Internet

A global communication system that links together thousands of individual networks, allowing the exchange of information between two or more computers.

2
New cards

HTML

HyperText Markup Language; the standard markup language used for creating and describing the structure of Web pages.

3
New cards

HyperText Transfer Protocol (HTTP)

The protocol that determines the message formats used when communicating with a server.

4
New cards

Uniform Resource Locator (URL)

The unique address of a given resource on the Web.

5
New cards

Browser

A software application, such as Chrome, Firefox, Opera, or Microsoft Edge, used to access and display websites.

6
New cards

Front-end development

Also called client-side development, it refers to constructing the content, design, and interactive elements a user sees, typically using HTML, CSS, and JavaScript.

7
New cards

Back-end development

Also called server-side development, it controls what goes on behind the scenes, often using a database to generate the front-end.

8
New cards

Tim Berners-Lee

The person who invented the World Wide Web (WWW) in 1989.

9
New cards

HTML 3.2

The version of HTML released in 1997 that added support for tables, scripting, and more formatting options.

10
New cards

HTML 4.01

The version of HTML released in 1999 that introduced stylesheets and improved web accessibility.

11
New cards

XHTML 1.0

The version released in 2000 that combined HTML with XML rules for stricter coding.

12
New cards

HTML5 Living Standard

Established in 2012, this made HTML5 a continuously updated standard.

13
New cards

Text-Based Editors

Software like Sublime Text or Visual Studio Code that allows direct coding with features like syntax highlighting for full control.

14
New cards

WYSIWYG Editors

Standing for "What You See Is What You Get," these offer a graphical interface to design pages visually while automatically generating HTML (e.g., Adobe Dreamweaver).

15
New cards

HTML Tags

Keywords enclosed in angled brackets < > that tell a browser how to format and display content.

16
New cards

Nesting

The practice of placing HTML elements inside other elements, which must follow a properly nested order (last opened, first closed).

17
New cards
tag

A structural tag placed around the entire document's contents to identify the document as being written in HTML.

18
New cards
tag

A structural tag that holds metadata and information about the document itself, such as the title.

19
New cards
tag

A structural tag that holds all the information and content intended to be displayed in the browser window.

20
New cards

A tag used within the section that defines the text shown in the browser's title bar.

21
New cards

Void elements

Also known as empty elements or unpaired tags, these do not have a closing tag or content (e.g.,
and


).

22
New cards

Tag

An empty tag representing a line break that moves the text to a new line.

23
New cards

Tag

An empty tag representing a Horizontal Rule, used to put a line across the webpage.

24
New cards

Explorer Panel

The section in the VS Code sidebar that shows project folders and files in a tree view.

25
New cards

Terminal (VS Code)

A built-in panel used to run commands, which can be opened by pressing Ctrl + ~ (tilde key).

26
New cards

Extensions Marketplace

A feature in VS Code (accessed via Ctrl + Shift + X) where users can search for and install tools like Live Server or Prettier.