Getting Started with HTML

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

flashcard set

Earn XP

Description and Tags

Vocabulary and key concepts from the 'Getting Started with HTML' lecture, covering the history, editor environment, basic tags, and character entities.

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

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

HTML

Stands for Hypertext Markup Language; it is the most widely used language for creating web pages by describing their structure using markup.

2
New cards

Hypertext

Refers to the way in which web pages or HTML documents are linked together.

3
New cards

Tim Berners-Lee

The Father of the World Wide Web (WWW) who created HTML in late 1991.

4
New cards

W3C

World Wide Web Consortium, the organization that provides recommendations for HTML specifications.

5
New cards

Software Bug

An error, flaw, failure, or fault in a computer program or system that causes incorrect results or behavior.

6
New cards

Notepad++

A free source code editor for Microsoft Windows that supports editing in tabs and allows working with multiple open files in a single window.

7
New cards

Title bar

A part of the Notepad++ environment that shows the file name, file type, and file location for the current file.

8
New cards

Tab bar

A part of the Notepad++ environment that gives access to all opened files.

9
New cards

Line number

Identifies the location of a specific line of code within the editor.

10
New cards

Text area

The working space in an editor where the codes are actually typed in.

11
New cards

Status bar

A bar in the editor environment that identifies the location of the cursor.

12
New cards

Heading tags

Tags defined with <h1><h1> to <h6><h6>; <h1><h1> is used for the most important heading while <h6><h6> is for the least important.

13
New cards

Paragraph tag

The <p><p> element used to define a paragraph; browsers automatically add one line before and after it.

14
New cards

Line Break tag

The <br/><br/> tag which produces a new line without starting a new paragraph; it is an empty element that does not need a closing tag.

15
New cards

Preformatted tag

The <pre><pre> tag that preserves spaces and line breaks of text, usually displaying it in a fixed-width font like Courier.

16
New cards

Horizontal Rule tag

The <hr/><hr /> tag which creates a horizontal line to divide different sections of a web page.

17
New cards

Comment Tag

Used to insert notes or descriptions in the source code using the syntax <! Comments ><!--\text{ Comments }-->; these are not displayed by the web browser.

18
New cards

Character Entities

Specific codes used in HTML to display reserved characters (like << or >>) that might otherwise confuse the browser.

19
New cards

 

The character entity for a non-breaking space, used to add extra spaces to text that HTML would otherwise remove.

20
New cards

<

The character entity name for the 'less than' symbol (<<); its entity number is <.

21
New cards

>

The character entity name for the 'greater than' symbol (>>); its entity number is >.

22
New cards

&

The character entity name for the ampersand symbol (&$); its entity number is &$$.

23
New cards

©

The character entity name for the copyright symbol (%%); its entity number is©$$.