Save
CS5103 slides
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Kriszti Szabo
Visit profile
Cards (298)
What is a markup language?
A way to
annotate
documents
View source
What does a markup language describe about content?
It describes the
purpose
of the content
View source
What may markup languages comprise?
Elements with
attributes
View source
Is HTML a programming language?
No, it is a
markup
language
View source
What does HTML stand for?
HyperText Markup Language
View source
What does the HTML Living Standard describe?
Syntax and
semantics
, not presentation
View source
What defines the permitted elements, attributes, and values in HTML?
HTML
Living
Standard
View source
Why is it important that HTML documents can be interpreted by various user agents?
It ensures compatibility across different
browsers
View source
Are HTML tags case-sensitive?
No, they are
case-insensitive
View source
What is the purpose of using consistent tag casing?
For
maintainability
View source
What are some tags that come in pairs?
Open
and
close
tags
View source
What is an example of a paired HTML tag?
<h1>This is a
heading
</h1>
View source
What are empty or void tags?
Tags
with no text content
View source
What do attributes in HTML provide?
Additional
information about
elements
View source
How are attributes written in HTML?
As
key-value pairs
within tags
View source
Can some attributes be applied to any element?
Yes, some are
universal
View source
How can HTML elements be nested?
By placing
tags
inside the content of other tags
View source
What is an example of nested HTML tags?
<body><h1>Heading
</h1></body>
View source
What is required nesting in HTML?
A
list element
must be inside a list
View source
What nesting is not permitted in HTML?
A
paragraph
cannot
contain
another paragraph
View source
What happens if tags are interleaved incorrectly?
User
agents
may misinterpret the
HTML
View source
What are comments in HTML used for?
To provide information for
developers
View source
How are comments written in HTML?
Using <!-- comment -->
syntax
View source
What should be done with comments before release?
They should be removed
View source
What does the lang attribute in the HTML root specify?
The language of the
document
View source
What does the head section of an HTML document contain?
Meta-information
about the page
View source
What is the purpose of the title tag in the head section?
To display the page title in the
browser
View source
What does the DOCTYPE declaration specify?
The type of
HTML document
View source
What happens without a DOCTYPE declaration?
Quirks Mode
is triggered
View source
What does the meta tag provide in the head section?
Data about the
data
View source
What is the purpose of the link tag in the head section?
To include other files before
rendering
View source
What does the body section of an HTML document contain?
Content to be displayed to the
user
View source
What are the broad categories of HTML tags?
Sections, grouping,
text-level semantics
, etc.
View source
What are some examples of section tags in HTML?
<
article
>, <
nav
>, <
header
>, <
h1
>-<
h2
>
View source
What are some examples of grouping tags in HTML?
<p
>,
<ol
>,
<ul
>,
<li
>
View source
What are some examples of text-level semantic tags in HTML?
<
em
>, <
strong
>, <
abbr
>, <a>
View source
What are some examples of embedded content tags in HTML?
<
img
>
View source
What are some examples of tabular data tags in HTML?
<
table
>, <
thead
>, <
tbody
>, <
tfoot
>
View source
What are some examples of form tags in HTML?
<form>
,
<label>
,
<input>
,
<button>
View source
What tools were recommended for web development?
VS Code
with
Web Dev Extensions
View source
See all 298 cards