Terms to Remember Flashcards

1
Q

how do you change font in CSS?

A

font-family

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

How do you change the size of text in CSS?

A

Under the style tag, font-size: px or em

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

Font-Weight command in CSS?

A

Makes the text bold

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

Font-style command in CSS?

A

Makes the text italic, etc.

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

Spacing between lines in CSS?

A

Line-height:

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

Alignment in CSS

A

text-align

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

text-decoration in CSS

A

if you want to underline something, etc.

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

span tag

A

groups a selection of text

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

div tag

A

groups elements of text

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

inline element

A

does not have a new line after it

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

block element

A

does have a new line after it

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

How can you do width for a div?

A

you can do it by px or by percentange

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

margin?

A

Transparent area around the box

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

Border in CSS and aspects?

A

border: size, dotted or solid, then the color

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

padding?

A

pads out your text

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

What do you use “float” for in CSS?

A

For wrapping text around images; “float: left”; you can also add “width” and “margin” to it

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

“p.warning {“ what does this do?

A

It changes anything with a “p” tag with the class “warning” to do whatever you tell it to

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

“ul. spacey li strong {“ what does this do?

A

this is a descendent selector. In other words, if you have similar tags throughout the page and need to change a specific tag’s stuff, you can specify that in the unordered list called “spacey” that where there’s a strong list item to change what’s in there

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

CSS Selectors

A

Allows you to group certain things you do. For example, if you wanted to group all your headings together with a comma (h1, h2 {)

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

a: link

A

this is a pseudo class that selects elements of a webpage that are not a part of the normal structure. Selects all the links that the user has not selected, yet

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

visited pseudo class

A

selects all the links the user has visited

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

hover pseudo class

A

selects only if the user is hovering over it

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

active pseudo class

A

selects what is being clicked

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

focus pseudo class

A

tab key to tab around the interface when targeting a link

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

In the case that two selectors are equally specific in CSS, what happens?

A

The last one wins. In general, whatever is more specific will take precedence

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

Inline CSS Styles

A

styles of CSS you’ll put right after a tag. Separate with a semicolon. Ex: <h1 style="background: salmon; color: white;">

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

External style sheets

A

File of CSS rules that we can include on multiple pages. Use the “link” tag for this. Ex: <link></link>

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

What is the selector in CSS?

A

The part before the curly brace

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

What is the property in CSS?

A

Inside the curly brace, it is the command before the colon

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

What is the value in CSS?

A

Inside the curly brace, it is the command after the colon

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

what is the declaration in CSS?

A

It’s the command before the colon. Ex: text-align: center

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

What is the rule in CSS?

A

The entire block of code

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

What does the hexadecimal value 10 represent?

A

A

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

What does the hexadecimal value F represent?

A

15

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

Colors are specified in RGB values ranging from 0 to what?

A

255

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

What hexadecimal value represents 255?

A

FF

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

The browser-safe color palette consists of a standard of how many colors?

A

216

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

The hexadecimal value #000000 represents which color?

A

Black

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

The hexadecimal value #FFFFFF represents which color?

A

White

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

The hexadecimal value #FF0000 represents which color?

A

Red

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

Do you have to close an <img></img> tag?

A

Nope

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

/mysite/index.html

A

The initial forward slash ( / ) instructs the browser to look for a directory names mysite that is off of the root directory. If this page were on a Web server, the link would refer to the Web server’s Web root directory.

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

mysite/index.html

A

The absence of any initial characters instructs the browser to look for the mysite subdirectory. This subdirectory begins off of the same level as the current page.

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

../mysite/index.html

A

The initial two periods and forward slash ( ../ ) instruct the browser to look for a directory names mysite that begins one level higher than the page you are currently viewing.

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

<header>
</header>

A

Top of the Webpage, like the header in a work-processing document.

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

<nav>
</nav>

A

Defines navigation links, such as hypertext menus to access various pages of the Website.

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

<article>
</article>

A

Website content, such as company services, articles, blogs, images, and videos.

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

<aside>
</aside>

A

Content that is “aside” from the article content, such as advertisements or news feeds.

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

<footer>
</footer>

A

Bottom of the Webpage, like the footer in a work-processing document.

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

What happens after a user has entered information into a Web Form and clicks submit?

A

Submitting the form uploads or emails the user’s information to the receiving server. Many Web forms also provide a Reset button that clears entered data instead of submitting it, and resets the form fields to the default values.

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

What do CGI scripts do?

A

CGI scripts perform this information processing. They receive client input, process data, perform server-side actions such as storage or communications with other servers, and respond to client requests.

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

What is a commonly used CGI Script?

A

FormMail; it is written in Perl (Practical Extraction and Report Language)

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

The <form> tag

A

The HTML <form> tag creates a user-input Web form by encompassing all the content and fields of the form on the page. The <form> tag is a container tag, so you should include both opening and closing tags. In some older browsers, if you fail to supply the closing </form> tag, the form may not render or may not submit.

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

method element in forms?

A

specifies which method the browser will use to send form data to a Web server

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

action element in forms?

A

specifies the name and location of the CGI script used to process the form

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

two values of the method attribute?

A

get and post

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

get method

A

Form data is submitted from a form to the URL of the Webpage for use in a query string. This method sends information in cleartext and is thus less secure.

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

post method

A

Form data is posted to the URL specified by the action attribute. Post is the preferred method for sending form data. It can send more characters, although sometimes post requires more processing by the CGI script.

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

input tag

A

The <input></input> tag is not a container tag; it stands alone. You use <input></input> to create text boxes, check boxes, radio buttons, and the Submit and Reset buttons.

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

The <select> tag</select>

A

The <select> tag is a container tag used to create single-option and multiple-option select lists.</select>

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

The <textarea> tag</textarea>

A

The <textarea> tag is a container tag used to create an area for user commends and feedback.</textarea>

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

Forms and the name attribute

A

All form field elements share an attribute: name. The name attribute identifies information you receive from a user and associates it with a value you specify. The name attribute helps you organize user input. For example, you could use a series of check boxes to learn about a user’s preferences for gardening, sailing and biking, and you could name the group of boxes “Interests.” Thus when you receive information from the Web form, the names in your results clearly indicate the user’s choices.

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

Submit and Reset buttons

A

When you specify the <input></input> tag’s type attribute value as “reset” or “submit”, you create a button that performs a specific action. Clicking the Submit button sends the data from all fields in the form to be processed by the action specified in the <form> tag. Clicking the Reset button clears all form fields instead of submitting the data, and resets fields to their default settings.

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

Radio buttons

A

Radio buttons are never used as stand-alone items. They are reserved for two or more mutually exclusive options

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

Which label attribute is used to “bind” a label element to an input, select, or textarea element?

A

for

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

Identify common types of form elements used to collect user input.

A

textarea, select, input

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

Form validation is typically used to

A

verify credit card information and client phone number

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

The Document Object Model (DOM) is

A

cross-platform Application Programming Interface (API) that specifies how objects in a document can be referred to and manipulated through scripting languages.

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

What is the difference between the Internet and the World Wide Web (WWW)?

A

The Internet is the content and the WWW is the delivery infrastructure.

70
Q

The effect of marketing efforts influencing a particular target market or demographic.

A

mind share

71
Q

push technology

A

You receive a newsletter via email from a business because you previously joined their mailing list

72
Q

co-location web hosting solution

A

The service provider allocates space for your equipment.

You provide the server hardware, and the provider supplies space and necessary bandwidth for your server.

73
Q

Identify eCommerce payment technologies.

A

Electronic Funds Transfer (EFT)

Payment Gateway

3-D Secure

74
Q

What is JDBC and what is its purpose?

A

JDBC (Java Database Connectivity) is database connection method, used for many systems.

75
Q

Perl

A

A traditional technology that is platform independent (i.e., you can install it on any server-based operating system). Once you install the Perl interpreter on the system, you can run Perl-based applications.

76
Q

PHP Hypertext Preprocessor (PHP)

A

A technology that will run on multiple platforms. Once you install the PHP interpreter on the system, you can create applications.

77
Q

ColdFusion

A

A proprietary technology designed to be easier to install and use than other interpreters and languages.

78
Q

Django

A

An open-source Web framework written to help developers use the Python language. It is meant to be a fast-development platform.

79
Q

Django

A

An open-source Web framework written to help developers use the Python language. It is meant to be a fast-development platform.

80
Q

AJAX

A

A programming methodology that enables Web applications to interact with users in much the same way they do with desktop applications. You can use Ajax to create dynamic and interactive Webpages without the need to refresh or reload the page.

81
Q

Ruby

A

An object-oriented programming language based on Perl and Smalltalk. It has powerful capabilities, but is easier to use than many other languages, including Java and C#.

82
Q

Push technology

A

Any technology that automatically provides information to a customer list. In legitimate cases, the customer initially makes a request to be placed on the list. Customers receive information until they ask to be removed. One example of
push technology is a mailing list server. Illegitimate examples of push technology include spam.

83
Q

Pull technology

A

Any technology that provides information to a customer only upon request. A more standard way to disseminate information from a server. For example, whenever you download a file from a Website or collect your email, you are using pull technology.

84
Q

Vertical portal

A

a portal dedicated to one specific interest or field (e.g., women’s health, network security, sports or politics), also called a “vortal.” Each linked site on a vertical portal maintains a topical focus. Examples include CNET (www.cnet.com), Slashdot (http://slashdot.org/) and Zillow (www.zillow.com). Intranets and extranets are also examples of vertical portals because they provide links to external sites and are dedicated to a specific topic: the businesses that host them. Intranets are sometimes known as corporate portals.

85
Q

Horizontal portal

A

a portal that provides links to various Websites with no particular focus. Examples include Google (www.google.com)and Yahoo! (www.yahoo.com) . Each of these sites contains links to other sites, but linked sites represent diverse interests (e.g., travel, news, shopping), rather than one focus.

86
Q

MIME

A

protocol that enables operating systems to map file name extensions to corresponding applications

87
Q

Flat-file database

A

Information is stored in a single table, often in a simple text file. The Windows registry is an example of a flat-file database.

88
Q

Non-relational database

A

Information is stored statically. Information can be searched but cannot be reorganized or placed into another database.

89
Q

Relational database

A

Information can be sorted, altered, and placed into other databases for retrieval.

90
Q

Object-oriented database

A

A newer form with the capabilities of a relational database, plus greater storage and search efficiency.

91
Q

Structured Query Language (SQL)

A

After you have created several data tables, you can query them to glean information. Generally, if you want to query a relational database, you use Structured Query Language (SQL).

92
Q

Copyright

A

The legal ownership of expression by an author. According to most developed countries, copyrighted intellectual property becomes the property of the author for a certain number of years. Copyright protection ensures that the person or group who owns the copyright has the right to publish or otherwise distribute material, and control how it is redistributed. In most countries, a copyright can be sold by its owner.

93
Q

Trademark

A

A unique word, phrase or symbol that is claimed or officially registered by an organization with the government. Trademarks can include logos, phrases, brands, company names and so forth. If a logo, word or phrase is trademarked, then only the organization that registered it can use it.

94
Q

Which two form elements should use the same name for groups of related elements?

A

Radio

Checkbox

95
Q

Which request method should be used in a form to append parameters into a query string?

A

Get

96
Q

Which tag is a valid form field for exclusive use in HTML5?

A

<input></input>

97
Q

What are Syntactically Awesome Style Sheets (SASS) used for with regard to adding functionality?

A

As a CSS extension language for preprocessing

98
Q

Which HTML tag is used to display text exactly as it is defined in the HTML markup?

A

Pre

99
Q

Which CSS state selectors show uninspected HREFs in red?

A

a:link { color:red; }

100
Q

Which attribute is used to specify the format of a video file?

A

type

101
Q

Which two points are specified when defining a circular hot spot?

A

Center

Radius

102
Q

Which table element is always required when adding a table to an HTML page?

A

Row

103
Q

Which symbol with an href value tells the browser to look for an anchor within the current document?

A

Hash (#)

104
Q

What are two characteristics of <!DOCTYPE>?

A

Notifies a web browser to use HTML5 standard

Read by an HTML validation engine

105
Q

Which hosting option allows a company to ship specific hardware to the provider?

A

Colocation service

106
Q

An organization plans to update a web page that has a multitiered architecture. The developer needs to ensure that the web page will function as expected before deploying the updates.

Where should the developer perform regression testing?

A

On a clone of production machines

107
Q

Which table property has top, bottom, and middle values?

A

Vertical-align

108
Q

Which tag should be added to ensure a responsive design in a web page, and which will be accessed from a variety of devices?

A

<meta></meta>

109
Q

Which tag uses the manifest attribute to enable the offline support for a web page?

A

<html>
</html>

110
Q

Which HTML5 element has a poster attribute?

A

Video

111
Q

What is a characteristic of a virtual server?

A

Multiple sites are hosted on individual servers.

112
Q

Which visual element does not change when applying Heading tags?

A

the font-family property

113
Q

What is the Document Object Model (DOM)?

A

a cross-platform and language-independent API

114
Q

What attribute would you apply to the <audio> element to play a file over & over again without stopping?</audio>

A

loop=”loop”

115
Q

What is a Web Application Framework?

A

Sets of software tools for development purposes

116
Q

Form validation is typically used for the following purposes

A

To validate the correct data type for an input field

117
Q

Which line of HTML code creates a multiple-option select list in a Web form?

A

<select></select>

118
Q

According to the Waterfall Model, a standard for software development, the web page life cycle can be defined as a succession of the following phases:

A

requirements analysis, where the goals and objectives for the web page are identified;

design, where the web page is planned;

implementation, where the actual web page is developed;

testing, where the implementation is verified;

deployment, where the web page is made available;

maintenance, where the web page code may require patches or adjustments.

119
Q

site map

A

Represents a blueprint of the various web pages and content contained within a website. The site map can serve as a structural component that helps locate and reinforce web page organization.

120
Q

branding

A

The distinctive set of features that define and represent an organization; can include elements such as logos, color, taglines, or jingles.

121
Q

A common usage of the viewport tag

A

instruct the browser to use the screen width of the device as the width for the page content: <meta name”viewport” content=”width=device-width”>

122
Q

Which phase of the web page life cycle is concerned with deprecated hyperlinks?

A

maintenance

123
Q

trade secrets

A

A type of intellectual property that comprise formulas, practices, processes, designs, instruments, patterns, or compilations of information that have inherent economic value because they are not generally known or readily ascertainable by others, and which the owner takes reasonable measures to keep secret.

124
Q

mockup

A

A working sample for reviewing format, layout, or content.

125
Q

Python

A

An open source, high-level programming language; it can run on Mac, Windows, and Unix systems and has also been ported to Java and .NET virtual machines.

126
Q

Perl

A

Stands for Practical Extraction and Report Language; a scripting language which uses a syntax similar to C/C++; it is commonly used by Web programmers to create scripts for Web servers.

127
Q

Ruby

A

An open-source object-oriented programming language.

128
Q

VBScript

A

An Active Scripting language developed by Microsoft that is modeled on Visual Basic; it allows Microsoft Windows system administrators to generate powerful tools for managing computers with error handling, subroutines, and other advanced programming constructs.

129
Q

ASP.net

A

An open-source, server-side web-application framework designed for web development to produce dynamic web pages.

130
Q

Which language is most commonly used as a client-side scripting language in web development?

A

JavaScript is the usual script language native to web page development, and is primarily used as a client-side scripting language (although JavaScript can also be used server-side as well).

131
Q

For images, the standard formats best viewed in most browsers include:

A

jpg, png, and gif

132
Q

For audio, the following formats are supported by the <audio> element:</audio>

A

mp3, wav, ogg

133
Q

For videos, the following formats are supported by the <video> element:</video>

A

mp4, webm, ogg

134
Q

A MIME

A

(Multipurpose Internet Mail Extension) type is specified on a web server in order to identify the type of file that is being sent to a web browser. This is done based on the file’s extension.

135
Q

cloud computing

A

Refers to applications and services offered over the Internet. These services are offered from data centers all over the world, which collectively are referred to as the “cloud.” This metaphor represents the intangible, yet universal nature of the Internet.

136
Q

Why server virtualization?

A

A website host can run multiple websites across a single physical server, rather than needing a physical server for each website. In fact, each virtual server can include multiple customers hosted on each virtual web server. This reduces the hosting providers’ costs, which ultimately translates to lower hosting expenses for the website owner. Ultimately, the ability to better utilize physical server resources allows for greater scale in web server deployments.

137
Q

Which of the following Internet marketing practices is a technique that enables you to list your site high in search engine rankings by advertising on keywords that describe your product or service?

A

PPC (Pay-Per-Click)

138
Q

Which of the following Internet marketing practices is a business (usually Web-based) that markets and sells goods and services that it does not own or store?

A

Aggregator

139
Q

Which of the following languages is a universal technology that uses the Java interpreter?

A

JSP

140
Q

Which of the following languages is a proprietary technology that allows you to use various languages, including JavaScript, VBScript, Visual Basic, or C#?

A

.NET

141
Q

Sass

A

a stylesheet language that’s compiled to CSS. It allows you to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized and makes it easy to share design within and across projects.

142
Q

The controls attribute

A

adds video controls, like play, pause, and volume.

143
Q

The poster attribute

A

specifies an image to be shown while the video is downloading, or until the user hits the play button. If this is not included, the first frame of the video will be used instead.

144
Q

The <source></source> element

A

allows you to specify alternative video files which the browser may choose from. The browser will use the first recognized format.

145
Q

The HTML 4.01 Recommendation (released in 1999) contained many improvements from HTML 3.2, most notably

A

Cascading Style Sheets (CSS). You can access this standard at www.w3.org/TR/html4/. The 4.01 specification included minor modifications to the 4.0 specification.

146
Q

Extensible Markup Language (XML)

A

a language used to describe data elements on a Webpage. XML enhances the structure and navigation of data. It is not used to format the page’s appearance. Businesses use XML because it allows data to be interchanged with all types of applications.

147
Q

In HTML, what is a container?

A

Part of a web document body that has opening and closing tags.

148
Q

What type of HTML element fills the minimum space possible in the parent container and can only contain text or other elements of this type?

A

inline element

149
Q

What HTML attribute should be used if a <form>…</form> field contains binary data, such as an image, that the normal format of the query string is not sufficient to encode?

A

enctype

150
Q

Which <input></input> attribute provides a hint to the user about the information being requested?

A

placeholder

151
Q

Which attribute inside the <label>…</label> element is used to associate the label with a widget?

A

for

152
Q

Which input element attribute limits the number of characters the user can type in a text box or password field?

A

maxlength

153
Q

True or false? The <audio>...</audio> element can play audio as soon as the audio file has downloaded to the browser

A

True

154
Q

True or false? The AAC and MP3 audio formats are supported by nearly all web browsers.

A

True

155
Q

Select the four (4) <input></input> types that exist for entering specific types of text.

A

email
search
tel
url

156
Q

True or false? Even though it may not be required, a web developer should always use the closing tag to mark the end of the tag content.

A

True

157
Q

True or false? The use of self-closing element tags should be avoided.

A

True

158
Q

True or false? A boolean attribute is false when present and true when absent

A

False

159
Q

Which of the following are HTML5 semantic tags? Select all that apply

A

<footer>...</footer>

<header>...</header>

<nav>...</nav>

160
Q

XML simplifies the coding process regarding which of the following?

A

Data Availability
Data Sharing
Data Transport
Platform Changes

161
Q

True or false? XML does not use predefined tags

A

True

162
Q

True or false? All XML elements must have a closing tag.

A

True

163
Q

What is the XML equivalent to the HTML Doctype declaration?

A

The XML prolog

164
Q

True or false? XML tags are case sensitive

A

True

165
Q

An inline style uses curly braces ({}).

A

False

166
Q

all valid selector types used in CSS

A

class
descendant
element
id
pseudo-class

167
Q

Which selector name correctly matches the CSS selector used

A

descendant

168
Q

How is an attribute selector created in CSS?

A

Specified with an attribute name and optional value comparison enclosed in square brackets ([ and ]).

169
Q

True or false? The pseudo element selector, specified with two colon characters (::) followed by a pseudo-element, matches parts of elements.

A

True

170
Q

the valid ways that we can specify color

A

Hexadecimal color
HSL color value
RGB color value
RGBA color value