Chapter 3 Web Development & Design Foundations with HTML5

Chapter 3 Web Development & Design Foundations with HTML5

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

CSS validation

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (37)

Section 1

(37 cards)

CSS validation

Front

provides students with quick self-assessment to prove that the codes use correct syntax

Back

font-family property

Front

configures font typeface

Back

class selector

Front

used when needed to apply a CSS declaration to certain elements on a web page and not necessarily tie the style to a particular HTML element

Back

line-height property

Front

modifies the default height of a line of text and is often configured with a percentage value

Back

font-size property

Front

sets the size of the font

Back

<link>

Front

used to associate an external style sheet with a web page. placed at head section of the page and is a stand-alone tag

Back

background-color property

Front

configures the background color of an element

Back

font-style property

Front

used to configure text displayed in italics

Back

width property

Front

configures the width of a block display element

Back

text-indent property

Front

configures the indentation of the first line of text within an element

Back

margin-left property

Front

configures the empty space between the page content and the edges of the browser window to the left

Back

inline styles

Front

coded in the body of the webpage as an attribute of an HTML tag. the style applies only to the specific element that contains

Back

declaration

Front

indicates the CSS property you are setting (such as color) and the value you are adigning to the property

Back

imported styles

Front

similar to external styles in that they can connect styles coded in a separate text file with a web page document. an external style sheet can be imported into embedded styles or into another external style sheet by using the @import directive

Back

type attribute

Front

when using XHTML syntax, the <style> tag requires this (with the value of "text/css"). optional in HTML5

Back

external styles

Front

coded in a separate text file. this text file is associated with the web page by using a link element in the head section

Back

margin-right property

Front

configures the empty space between the page content and the edges of the browser window to the right

Back

hexadecimal color values

Front

specify RGB color with numeric value pairs ranging from 00 to FF (0 to 255 in base 10)

Back

selector

Front

can be an HTML element name, class name, or id name

Back

class attribute

Front

used to apply styles set in the new class to any element you wish ex: class="feature"

Back

id selector

Front

used to identify and apply a CSS rule uniquely to a single area on a web page

Back

rel attribute

Front

"stylesheet"

Back

rules of precedence

Front

applies the styles in order from the outermost (external) to the innermost (HTML attributes coded on the page)

Back

em unit

Front

relative font unit that has its roots in the print industry, dating back to the day when printers set type manually with blocks of characters

Back

style attribute

Front

inline styles are coded as an attribute on an HTML

Back

RGB color

Front

combination of different intensities of red, green, and blue that the monitor displays

Back

color property

Front

configures the text (foreground) color of an element

Back

id attribute

Front

used to apply the styles set in the footer id to any element

Back

embedded styles

Front

defined in the header of a web page. these style instructions apply to the entire web page document

Back

Cascading Style Sheets (CSS)

Front

used to separate the presentation style of a web page from the information of the web page. used to configure text, color, and page layout. proposed as a standard in 1996 by W3C

Back

font-weight property

Front

configures the boldness of the text

Back

inheritance

Front

certain CSS properties passed down to elements nested within a container element, such as a <div> or <body> element.

Back

<span>

Front

used to format an area that is contained within another, such as within a <p>, <blockquote>, <li.

Back

<style>

Front

where embedded styles are placed. located in the head section of web page

Back

text-align property

Front

configures the alignment of text and inline elements within block display elements such as headings, paragraphs, and divs

Back

href attribute

Front

name of the style sheet file

Back

Web-Safe Color Palette/web-safe colors

Front

colors that display in a similar manner on both the Mac and PC platforms

Back