INTRO TO HTML Flashcards

1
Q

is standard language for creating web pages

A

HTML (HyperText Markup Language)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

It is used to structure content on the web
and to add elements like text, images,
links, and more

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

is not a programming language but
a markup language that defines the
structure of web pages

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Websites are built using _______, where HTML provides the
content and structure

A

HTML CSS JAVASCRIPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

allows us to display content on a
web browser, making it essential for any
website

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It is the foundation of every webpage

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Every HTML document starts and ends
with the_____ tag

A

<html>
</html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Declares the
document type and version of HTML being
used (HTML5)

A

<!DOCTYPE html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

This is the root element that
wraps the entire HTML content

A

<html>
</html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Contains metadata (e.g., title,
character encoding) and is not directly
visible on the page

A

<head>
</head>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Specifies the
character encoding to support different
languages and characters

A

<meta></meta>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The title of the webpage shown
on the browser tab

A

<title>
</title>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

This contains the content of the
webpage that will be visible to users

A

<body>
</body>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly