CSCE 102 – Week 1 Notes: Introduction to 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/18

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering the fundamental concepts, technologies, and syntax rules of HTML as introduced in CSCE 102 Week 1 notes.

Last updated 2:48 AM on 8/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Website

Collections of files viewed through a web browser.

2
New cards

HTML

Stands for HyperText Markup Language and provides the structure for websites.

3
New cards

CSS

A web technology that provides appearance and design.

4
New cards

JavaScript

A web technology that provides interaction and behavior.

5
New cards

HyperText

Refers to linked text.

6
New cards

Markup

Refers to tags.

7
New cards

Language

Refers to a standard set of rules.

8
New cards

Tag

A special keyword surrounded by angle brackets (<>< >) that tells a browser how content should be displayed.

9
New cards

HTML Syntax

The rules for writing code correctly to help browsers display web pages properly.

10
New cards

Closing Tag

Identified by a forward slash (//), it marks the end of most HTML elements.

11
New cards

Empty Tags

Tags that do not require a closing tag, such as the <br><br> tag used for line breaks.

12
New cards

HTML Comment

Text written inside an HTML file that is not displayed in the web browser, used for notes, explanations, or documentation.

13
New cards

Comment Syntax

Written as <!ThisisanHTMLcomment><!-- This is an HTML comment -->, which the browser ignores.

14
New cards

<!DOCTYPEhtml><!DOCTYPE html>

A declaration that tells the web browser the document is an HTML5 web page; it should appear on the first line.

15
New cards

Head Section

The part of an HTML document that contains information about the webpage, such as the title.

16
New cards

Body Section

The part of an HTML document that contains the content visitors can see.

17
New cards

Heading Levels

HTML provides six levels (h1 through h6), where h1 is the largest and h6 is the smallest.

18
New cards

Paragraphs

Created using the <p><p> tag to organize information into readable sections.

19
New cards

Common Mistakes

Examples include saving as .txt instead of .html, placing visible content in the head section, forgetting closing tags, and misspelling tag names.