First Quarter of Exam Deck Flashcards
What is the web’s architecture?
client-server
List and define the Web Protocols.
- IP
- TCP
- HTTP
What language is HTML?
HTML is a semantic language
Write an HTML comment.
<!-- HTML Comment -->
What makes up the project plan?
- Identify goals and scope of the project
- Identify the target audience
- Identify the type of web site
What is “creating a storyboard” about?
A storyboard is a sketch that outlines Web page components and links between web pages.
What is “creating a Hierarchy chart” about?
Map relationship between Web pages (aka Hierarchy Chart)
* Crucial when creating navigation system for the web site
* Include links between pages in the web site as well as external links
Why is Accessibility important?
Including accessibility into web pages widens potential auidence
List the Link Types.
- Relative Link
- Absolute link
- Anchor link
- Skip link
Name the parts of the Uniform Resource Identifier(URI)
Can’t upload images here so check desktop for answer
What are the two image types?
- Vector
- Bitmap
List and define the Image Formats
-
JPG: optimized for many colors
- Photographs
- Variable Compression rates -
GIF: optimized for areas with defined borders, few colors
- Line drawings
- Supports transparent pixels (of a single color) - PNG: Includes a full alpha channel for full transparency with gradients. PNG is a non patented replacement for GIF.
- SVG: no decrease in quality when scaled
What are the three image attributes?
- src
- alt
- title
What is the difference between HTML and CSS?
- HTML is used to indicate the meaning of things but not to specify how they should appear.
- Cascading Style Sheets (CSS) is a presentational language is used to specify how things appear.
What is a CSS syntax?
A CSS syntax contains two main parts
1. Selector - points to the HTML elements/s you want to style
2. Declaration block - the declaration block contains one or more declaration separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon.