Save
GRADE 9
TLE 9
QUARTER 4
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
yna ;3
Visit profile
Cards (61)
What does HTML stand for?
Hypertext Markup Language
View source
What is the basis of HTML?
It is based on
SGML
View source
What does hypertext refer to in HTML?
Text that points to other
pages
View source
What does markup refer to in HTML?
Code that provides details about
elements
View source
What does language refer to in HTML?
How HTML is structured to create
documents
View source
Who is the inventor of the web?
Tim Berners-Lee
View source
What was Tim Berners-Lee's idea for the web?
Linking
research papers
for easy access
View source
What is the first version of HTML called?
HTML 2.0
View source
What significant update was made in HTML 4.0?
Integration of
CSS
and
DHTML
View source
When was HTML 5 released?
2012
View source
What is a static webpage?
A page that appears the
same
for all users
View source
What is a dynamic webpage?
A page that displays varying content for
users
View source
What is the function of a browser?
To
retrieve
and display web data
View source
What is the most common browser?
Google Chrome
View source
What is Notepad used for in HTML?
To write
HTML
code
View source
What is the purpose of the <html> tag?
It indicates the start of an
HTML
document
View source
What does the <title> tag define?
The title of the
HTML
document
View source
What is the structure of a basic HTML document?
It includes
doctype
, html,
head
, and
body
View source
What are the basic HTML tags?
<!DOCTYPE>
<html>
</html>
<head>
</head>
<title>
</title>
<body>
</body>
View source
What is the purpose of the <body> tag?
To enclose the content of the
webpage
View source
What is a well-formed tag?
A tag that has both
opening
and
closing
tags
View source
What is an empty tag?
A tag that does not require an
end tag
View source
What are nesting tags?
Tags arranged in a
specific
order
View source
What are the steps to create an HTML document using Sublime Text?
Right-click
on desktop
Click new, select text document
Change
extension
to .html
Open with Sublime Text
View source
What are the steps to create an HTML document using Notepad?
Open Notepad
Edit HTML data
Click file, then save as
Change
extension
to .html
Click save
View source
What is the URL for downloading Sublime Text?
https
://
www.sublimetext.com
/
View source
What is the purpose of the <head> tag?
To hold general information about the
page
View source
What does the <!DOCTYPE html> declaration do?
It specifies the
document type
for
HTML
View source
What is the purpose of spacing tags in HTML?
To
create
spacing
for the
website
View source
What is the significance of the <br> tag?
It creates a line
break
in
HTML
View source
What is the tag used for line breaks in HTML?
<br
> or <br
/
>
View source
How do line break tags function in HTML?
They
break
lines
of
text
where
they
appear
View source
What is the structure of a basic HTML document?
<!
DOCTYPE
html>
<html>
<head>
<
title
>Title</title>
</head>
<body>
Content goes here
</body>
</html>
View source
What are the sources mentioned in the study material?
Brief history of
World Wide Web
-
https://www.w3.org/People/Raggett/book4/ch02.html
https://www.sublimetext.com/
https://www.w3schools.com/
View source
What tag is used to start a paragraph in HTML?
<p
>
View source
What tag is used to end a
paragraph
in
HTML
?
</p>
View source
What is the purpose of paragraph tags in HTML?
To separate paragraphs from
previous
content
View source
What is the tag used to create a horizontal rule in HTML?
<
hr
/> or <hr>
View source
What does the horizontal rule tag define in HTML?
A
thematic break
in the content
View source
What attributes can be used with the horizontal rule tag?
Align
,
size
,
width
,
color
View source
See all 61 cards