TOPIC 4 Flashcards

1
Q

provide an easy way to present information in an organized manner.

A

Lists

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

What are the two types of lists in HTML

A

ordered lists (for numbered items)
unordered lists (for bulleted items)

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

An _______ starts with the tag.
Each list item starts with the tag. The list items will be marked with bullets (small black circles) by default

A

Unordered List (<ul>)

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

What are the unordered list styles

A

Disc
Circle
Square
None

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

It is a unordered list style that sets the list item marker to a bullet (default)

A

Disc

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

It is a unordered list style that sets the list item marker to a circle

A

Circle

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

It is a unordered list style that Sets the list item marker to a square

A

Square

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

It is a unordered list style that The list items will not be marked

A

None

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

starts with the <ol> tag. Each list item starts with the <li> tag.

A

An ordered list (<ol>)

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

The list items will be marked with numbers by default, an _______ will start counting from 1. If you want to start counting from a specified number, you can use the start attribute.

A

An ordered list (<ol>)

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

What are the ordered list types

A

type= “1”
type= “A”
type= “a”
type= “I”
type=”i”

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

It is a ordered list type that list items will be numbered with numbers (default).

A

type= “1”

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

It is a ordered list type that list items will be numbered with uppercase letters.

A

type= “A”

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

It is a ordered list type that list list items will be numbered with lowercase letters. It is a ordered list type that list

A

type= “a”

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

It is a ordered list type that list items will be numbered with uppercase roman numbers.

A

type= “I”

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

It is a ordered list type that list items will be numbered with lowercase roman numbers.

A

type= “i”

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

Enumerate the list tags

A

< ul >
< ol >
< li >
< dl >
< dt >
< dd >

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

Defines an unordered list.

A

<ul>
</ul>

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

Defines a list item.

A

<li>
</li>

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

Defines an ordered list.

A

<ol>
</ol>

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

Defines a description list.

A

<dl>
</dl>

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

Defines a term/name in a description list.

A

<dt>
</dt>

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

Defines a description of a term/name in a description list.

A

<dd>
</dd>

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

are an essential part of web development that allow users to interact with a website by inputting and submitting data.

A

HTML Web Forms

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

These are typically used for tasks like logging in, signing up, submitting feedback, making purchases, or searching for information

A

Forms

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

What are the key features of HTML Web Forms

A

Data Input and Collection
Action and Method Forms
Interactivity
Form Elements

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

It is a key feature of web forms that states that Forms provide various input fields, such as text boxes, checkboxes, radio buttons, and dropdowns, to gather information from users.

A

Data Input and Collection

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

It is a key feature of web forms that states that to use the tag with attributes like action (the URL where the data is sent) and method (HTTP methods like GET or POST) to define how and where the data is processed.

A

Action and Method Forms

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

It is a key feature of web forms that states that HTML forms make websites interactive by enabling users to perform tasks, such as filling out contact forms, submitting feedback, or registering for services.

A

Interactivity

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

It is a key feature of web forms that states that Forms consist of a combination of input elements (<input></input>, <textarea>, <select>, etc.), labels, buttons, and additional elements like <fieldset> and <legend> for better organization.</select></textarea>

A

Form Elements

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

It acts as a container for various input elements, such as text fields, checkboxes, radio buttons, and buttons, which allow users to submit data to a server.

A

HTML Tag

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

The tag in _____ is used to create a form for collecting user input.

A

HTML

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

What are the input tags

A

< input type=”text” >
< input type=”password” >
< input type=”checkbox” >
< input type=”radio” >

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

is used for single-line text output.

A

< input type=”text” >

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

is used for password input, hiding the text.

A

< input type=”password” >

36
Q

allows selection of multiple options.

A

< input type=”checkbox” >

37
Q

allows selection of one option from a group.

A

< input type=”radio” >

38
Q

This creates a dropdown menu where users can select one option.

A

Dropdown/Select Menu

39
Q

Used for multi-line text input, such as messages or comments.

40
Q

creates a _______. Are used when users need to select one option from a group.

A

Radio Buttons

41
Q

allowing users to select a color from a palette.

A

Color Picker

42
Q

used to create a clickable button in HTML.

43
Q

It can serve various purposes, such as submitting form data to a server, resetting form fields, or performing custom actions with JavaScript.

44
Q

The type attribute specifies the button’s behavior.

45
Q

The list items will be numbered with numbers (default)

46
Q

Defines a password field, which hides the input

47
Q

Defines an input for email addresses

48
Q

Defines an input for checkboxes, which allows multiple options to be selected

49
Q

Defines an input for numeric values

50
Q

Defines an input for selecting a date

51
Q

defines an input for selecting a time

52
Q

defines an input selecting a color

53
Q

Defines an input for selecting files from the system

54
Q

Defines an input for radio buttons, where only one option can selected

55
Q

Defines an input for a range of values, like a slider

56
Q

You can click on a link and jump to another document. There are 2 types of Hyperlinks Text Li nks and Image Links

57
Q

is specified using HTML tag .

A

Links <a></a>

58
Q

his tag is called anchor tag and anything between the opening tag and the closing tag becomes part of the link and a user can click that part to reach to the linked document.

A

Links <a></a>

59
Q

the attribute that controls the document to be open.

60
Q

This attribute is used to specify the location where linked document is opened.

A

< a target ></a>

61
Q

Opens the linked document in a new window or tab

62
Q

Opens the linked document in the same frame or window (default behavior)

63
Q

Opens the linked document in the parent frame. If there is no parent frame, it behaves like _self.

64
Q

Opens the linked document in the full window, clearing any frames.

65
Q

Opens the linked document in a specified frame or iframe, identified by the name of the frame.

A

target=”frame_name”

66
Q

The most important attribute of the element is the ______ attribute, which indicates the link’s destination.

A

<a href=” ”></a>

67
Q

The link text is the part that will be visible to the reader.

A

<a href=” ”></a>

68
Q

Clicking on the link text, will send the reader to the specified URL address.

A

<a href=” ”></a>

69
Q

refer to the way you specify the location of a file or resource within your project structure

A

HTML paths

70
Q

What are the two main types of paths

A

Absolute Paths
Relative Paths

71
Q

provides the complete web address or path to access a specific resource on the internet.

A

Absolute Paths

72
Q

It includes the protocol (such as http or https), domain name (or IP address), and the path to the specific resource

<a href=”http://w3bschools.com/index.html”> W3BSchool </a>

A

Absolute Paths

73
Q

are used when referencing resources from external websites, ensuring that browsers can locate and retrieve the resource from any location on the internet.

A

Absolute Paths

74
Q

They provide a complete and unambiguous address to access the resource.

A

Absolute Paths

75
Q

points to a file or resource relative to the current location. It doesn’t include the root directory.

A

Relative Paths

76
Q

Relative to current document:

A

< a href=”about.html” > About Us </a>

77
Q

Relative to a Directory

A

< a href=”images/about.html” > About Us </a>

78
Q

Relative to the Parent Directory

A

< a href=”../shared/index.html” > Shared </a>

79
Q

Relative to the root directory

A

< a href=”/contact.html” > Contact Us </a>

80
Q

You can set a________ for your document using the element in the head of your HTML document.

81
Q

This can be useful when you want to use relative paths throughout your document but specify a common base for those paths.

A

Setting the base path

82
Q

Any relative path in the document will be relative to the specified base URL.

A

Setting the base path

83
Q

HTML links can be used to create ________, so that readers can jump to specific parts of a web page.

84
Q

can be useful if a web page is very long.

85
Q

When the link is clicked, the page will scroll down or up to the location with the _________.