1/18
A set of vocabulary flashcards covering the fundamental concepts, technologies, and syntax rules of HTML as introduced in CSCE 102 Week 1 notes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Website
Collections of files viewed through a web browser.
HTML
Stands for HyperText Markup Language and provides the structure for websites.
CSS
A web technology that provides appearance and design.
JavaScript
A web technology that provides interaction and behavior.
HyperText
Refers to linked text.
Markup
Refers to tags.
Language
Refers to a standard set of rules.
Tag
A special keyword surrounded by angle brackets (<>) that tells a browser how content should be displayed.
HTML Syntax
The rules for writing code correctly to help browsers display web pages properly.
Closing Tag
Identified by a forward slash (/), it marks the end of most HTML elements.
Empty Tags
Tags that do not require a closing tag, such as the <br> tag used for line breaks.
HTML Comment
Text written inside an HTML file that is not displayed in the web browser, used for notes, explanations, or documentation.
Comment Syntax
Written as <!−−ThisisanHTMLcomment−−>, which the browser ignores.
<!DOCTYPEhtml>
A declaration that tells the web browser the document is an HTML5 web page; it should appear on the first line.
Head Section
The part of an HTML document that contains information about the webpage, such as the title.
Body Section
The part of an HTML document that contains the content visitors can see.
Heading Levels
HTML provides six levels (h1 through h6), where h1 is the largest and h6 is the smallest.
Paragraphs
Created using the <p> tag to organize information into readable sections.
Common Mistakes
Examples include saving as .txt instead of .html, placing visible content in the head section, forgetting closing tags, and misspelling tag names.