LESSON 2 Flashcards

1
Q

HTML stands for

A

Hypertext Markup Language

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

It is a standard markup language used to
structure and format content such as text,
images, videos, and links

A

Hypertext Markup Language (HTML)

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

_ refers to a word, phrase, or chunk of text that is linked to another document or text.

A

Hypertext

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

A _is a computer language
that uses tags to define elements within a
document.

A

Markup language

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

The _declaration defines that this document is an HTML5 document.

A

<!DOCTYPE html>

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

The _ element is the root element of an HTML page.

A

<html>
</html>

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

The _element contains meta information about the document, such as its
title.

A

<head>
</head>

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

The _element contains the visible page content.

A

<body>
</body>

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

The _ element defines a heading, while the _ element defines a paragraph.

A

<h1>
<p>
</p></h1>

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

An HTML _ is a component of an HTML document that tells a web browser how to structure and interpret a part of the HTML document.
It has a start tag, with or without content, and an end tag.
It is an object within your web page. It can be a paragraph, heading, or image.

A

ELEMENT

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

These are keywords within a web page that define how the browser must format
and display the content.
_ are surrounded by angle brackets ( < > ). The first _ in a pair is the start
_, the second is the end _

A

TAG

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

HTML attributes provide additional information about HTML elements.
Attributes provide further instructions to the browser on how to handle the content
contained within the element. In defining an attribute for an element,
you must also assign it a value. It is always placed in the opening tag of
an element.

A

ATTRIBUTE

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

_ in programming are textual annotations inserted into a program’s
source code that are ignored by the compiler or interpreter.
_ are used to provide explanations, documentation, or notes about the whole or parts of the code

A

HTML COMMENT

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

COMMON WEBSITE LAYOUT

A

<header>
<nav>
<section>
<article>
<aside>
<footer>
</footer></aside></article></section></nav></header>

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

Defines a header for a
document or a section

A

<header>
</header>

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

Defines a set of navigation links

A

<nav>
</nav>

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

Defines a section in a
document

A

<section>
</section>

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

Defines an independent, selfcontained content

A

<article>
</article>

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

Defines content aside from the
content (like a sidebar)

A

<aside>
</aside>

20
Q

Defines a footer for a document or a section

A

<footer>
</footer>

21
Q

TYPOGRAPHY ELEMENTS

A

HEADINGS <h1>,<h2>,<h3>, …
PARAGRAPH <p>
PREFORMATTED TEXT <pre>
BOLD/STRONG TEXT <b>
,<strong>
UNDERLINED TEXT, INSERTED TEXT <u>
,<ins>
ITALICIZED TEXT, EMPHASIZED TEXT <i>
,<em>
SMALLER TEXT, BIGGER TEXT <small>,<big>
Text with background <mark>
SUBSCRIPT/SUPERSCRIPT ,
STRIKETHROUGH TEXT <del></del>
</mark></big></small></em></i></ins></u></strong></b>

22
Q

TYPES OF LIST

A

unordered list
ordered list
description list

23
Q

UNORDERED LIST

A

DISC
CIRCLE
SQUARE
NONE

24
Q

Sets the list item marker to a bullet (default)

25
Sets the list item marker to a circle
CIRCLE
26
Sets the list item marker to a square
SQUARE
27
Sets the list item marker to a square
NONE
28
The list items will be numbered with numbers (default)
type="1"
29
The list items will be numbered with uppercase letters
type="A"
30
The list items will be numbered with lowercase letters
type="a"
31
The list items will be numbered with uppercase roman numbers
type="I"
32
The list items will be numbered with lowercase roman numbers
type="i"
33
Description List
34
Description Term
35
Description of the Term
36
Defines a table
37
Defines a header cell in a table
39
Defines a cell in a table
41
Specifies column properties for each column within a
42
element
43
Groups the header content in a table
44
Groups the body content in a table
45
Groups the footer content in a table
46
By default, the document opens in the same window/tab as it was clicked. If you want it to open in another tab, specify the target as _blank. You can also create bookmarks in an HTML document using id attribute.
LINKS
47
In creating _ in HTML, it is common to use list element then just add links to it
NAVIGATION
38
Defines a row in a table
40
Specifies a group of one or more columns in a table for formatting