Section 1

Preview this deck

What does the font-size CSS text property do?

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 (67)

Section 1

(50 cards)

What does the font-size CSS text property do?

Front

allows you to set the font size

Back

WYSIWYG Editors

Front

web design software that has a graphical user interface. (What You See Is What You Get)

Back

SSL (what it stands for and its uses)

Front

Secure Sockets Layer 1.) Standard security protocol for establishing encrypted links between a web server and a web browser in online communication. 2.) The use of SSL technology ensures that all data transmitted between server and browser remains encrypted.

Back

http://www.HELP.yahoo.com/index.html

Front

subdomain name

Back

How do you set a background image?

Front

<body background="imagename.gif">

Back

XHTML

Front

eXtensible Hypertext Markup Language

Back

Domain Name System (DNS)

Front

an internet service that translates URLs into IP addresses

Back

Server

Front

a computer which provides services for other computers networked to it, or those computers allowed to connect to it.

Back

CSS (what it stands for and its uses)

Front

Cascading Style Sheets 1.) A way of indicating how a document should appear visually. 2.) Can be used to format both text and layout of elements (text, images, ect.).

Back

Why should the first page on a website be named index.html?

Front

because if the user does not specify a page the server will automatically "serve up" index.html for example: http://www.yahoo.com returns: http://www.yahoo.com/index.html

Back

What does the <th> tag do?

Front

Creates a table header, content between that tags will appear bold and centered

Back

Absolute Address

Front

the entire file path from one file to another, starting with http:// used for linking your file to an outside web file example: <a href="http://www.somewebsite.com">Click here</a>

Back

<p> </p>

Front

starts a paragraph, causes two line breaks, and creates a clean line

Back

WWW

Front

World Wide Web "The Web" - a system of interlined hypertext documents accessed via the Internet.

Back

<ul> </ul>

Front

starts an ends an unordered list

Back

Subdirectory

Front

a folder inside a folder

Back

Types of Images that should be used for websites.

Front

JPEG - Joint Photographic Experts Group .jpg - up to 17 million colors - compresses detail - best for photographs GIF - Graphic Interchange Format .gif - up to 256 colors - can be animated - best for images with few colors PNG-24- Portable Network Graphic .png - up to 17 million colors - larger file size than JPG -best for transparency PNG-24- Portable Network Graphic .png - only 256 colors or less

Back

HTML Tags

Front

letters or words that are in between "pointy" brackets <>

Back

What code is used to create hyperlinks

Front

<a></a> attributes: - href="url" - target="_blank" | "_new" | "some_name" example <a href="http://www.yahoo.com" target="_blank"> Visit Yahoo</>

Back

Text Editors

Front

software used to "hand-code" HTML and CSS

Back

IP Address

Front

Internet Protocol Address. A unique number used to identify a computer on a network.

Back

URL (what it stands for and its uses)

Front

Uniform Resource Locator The address of a web document

Back

<h1> </h1> through <h6>

Front

various heading sizes <h1> - largest <h6> - smallest

Back

HTML

Front

Hypertext Markup Language

Back

<strong> </strong>

Front

makes enclosed text bold

Back

<li> </li>

Front

adds an item to either type of list

Back

http://www.help.yahoo.com/US/PASSWORD/index.html

Front

Directory and Subdirectory

Back

TCP/IP (what it stands for and its uses)

Front

Transmission Control Protocol / Internet Protocol Set of networking protocols that allows two or more computers - or other devices - to communicate.

Back

Domain Name Server Domain Name System Server (DNS Server)

Front

A computer that converts a URL into an IP address. If one DNS Server does not know how to translate a particular domain name, it will ask other DNS servers until the correct IP address is returned.

Back

What are the main structure tags

Front

<html> </html> starts and ends document <head> </head> contains "behind the scenes" stuff ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| - <title> (text you see at the top of the browser, important for search engines) - <meta> (contain character encoding or search engine terms) - CSS information, or link to a style sheet - Script, like JavaScript ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| <body> Contains the stuff you see: - Text, Hyperlinks, Images, Video, Animation, Audio

Back

FTP (what it stands for and its uses)

Front

File Transfer Protocol 1.) A standardized way of transferring files from one machine to another 2.) An FTP client is used to transfer data

Back

What is the capitalized section of this URL called http://www.yahoo.com/INDEX.HTML

Front

File Name

Back

<blockquote> </blockquote>

Front

Indents a section, Skips a line above and below section, Good for setting off a passage such as a quote from an article.

Back

What resolution should Images have?

Front

Images on the web should have a resolution of 72 dpi/ppi (dots per inch, pixels per inch)

Back

What tag is used to insert images and what are its attributes?

Front

<img> attributes: - src="URL" (address to image file) - alt="Some text" (alternate text that shows up if image does not)

Back

<!DOCTYPE>

Front

tells the web browser what version of HTML to render the page in.

Back

What do each of these table tags do? - <table> - <tr> - <td> - </table> - </tr> - </td>

Front

<table> - starts a table <tr> - starts a row <td> - starts first cell </table> - ends table </tr> - ends row </td> - ends cell

Back

<em> </em>

Front

makes enclosed text italicized

Back

<ol> </ol>

Front

starts and ends an ordered list

Back

Directory

Front

a folder on a website used to organize files

Back

What is the capitalized section of this URL called http://www.YAHOO.COM

Front

domain name

Back

<br>

Front

creates a single line break

Back

Browser

Front

an interpreting program that translates markup (XHTML & HTML) and renders it visually using style information (CSS)

Back

What are the uses of HTML and what is XHTML

Front

1.) A set of instructions used to create and structure web documents. 2.) Defines the formatting and placement of elements that make up a web document. 3.) XHTML is a prior version of HTML

Back

What do <td colspan="2"> One </td> and <td rowspan="2"> One </td> do?

Front

<td colspan="2"> One </td> makes a table cell stretch to multiple columns <td rowspan="2"> One </td> makes a table cell stretch to span multiple rows

Back

Cache

Front

Temporary memory that holds most recently accessed data to speed up subsequent access of the same data.

Back

Text Formatting Tags

Front

tags that format text

Back

Relative Address

Front

A partial address that refers to the file path from your current file. Used for linking your own files example: <a href="page2.html">Click here</a>

Back

HTTP (what it stands for and its uses)

Front

Hyper Text Transfer Protocol 1.) A standardized way of exchanging documents on the World Wide Web.

Back

The internet

Front

A global system of interconnected computer netowkrs that use the standard Internet Protocol Suite (TCP/IP) to serve billions of users worldwide.

Back

Section 2

(17 cards)

What does the text-indent CSS text property do?

Front

allows you to indent your paragraphs uses: number, percentage, and inherit

Back

What is static positioning?

Front

static positioning is the default, boxes that use static positioning appear on the page in the order your code them, the higher up the box in the code the more in front the box will be on the page. uses: float and margin for centering

Back

What does the font-weight CSS text property do?

Front

allows you to set how bold your set appears. ex: 400=normal 700=bold

Back

What does the text-transform CSS text property do?

Front

allows you to chose uppercase and lowercase uses: none, uppercase, lowercase, capitalize, and inherit

Back

What does the text-align CSS text property do?

Front

allows you to set where your text is aligned. uses: left, right, center, justify, inherit

Back

What does the text-decoration CSS text property do?

Front

allows you to chose different decoration elements for your text. ie: none, underline, overline, line-through, blink

Back

How would you apply CSS for all link states?

Front

a:link {color: purple;} a:visited {color: red;} a:hover {color: blue;} a:active {color: green}

Back

What does the font-style CSS text property do?

Front

allows you to set your text to be italicized, normal, or oblique

Back

What does the font-variant CSS text property do?

Front

allows you certain letters of your text to be larger than others.

Back

What are the structural elements to make "boxes"

Front

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

Back

What would the text look like if this CSS code was applied: p {color: blue; font-family: arial;} .mytext {color: green;}

Front

any text inside of <a></a> would be blue and arial any text inside of <span class="mytext"> would be arial and green

Back

What does the word-spacing CSS text property do?

Front

allows you to choose the distance between each word.

Back

What is fixed positioning?

Front

fixed positioning uses z-indexs to determine which boxes are in front. does not scroll away when user scrolls

Back

What does the text-shadow CSS text property do?

Front

creates a shadow behind your text. ie: h1 {text-shadow: 2px 2px 4px #000000;} creates a black shadow behind text

Back

What does the line-height CSS text property do?

Front

allows you to set the height of each line in your text

Back

What is absolute positioning?

Front

absolute positioning uses z-indexs to determine which boxes are in front. scrolls away when user scolls down. uses: top or bottom; left or right to position

Back

How would you apply CSS for two different links and?

Front

create a custom class a.large:link {color: orange;} a.large:visited {color: orange;} a.large:hover {color: blue; a.large:active {color: yellow;} your <a> tag would look like this: <a href="a2.html" class"large"> Click here </a>

Back