Week 6 Quiz Flashcards
State and describe 3 considerations that one must follow when crafting the look and feel of the website.
-plan for easy access to information.The web developer determines how users access the information. The web developer also has to provide navigation choices to the user.
- plan for clear presentation of your information. it invloves the usage of plenty white space. it also involves the provision of contrasting colors that are easy on the eye.
- balance the design and content. this should be utilized complement the content and support the reader and avoid unncessary distraction to the user if the website has unnecessary design elements .
What is the look and feel of a web site?
it is the visual design and usability of the website.
List and describe any three (3) accessibility features that you should consider when designing for accessibility.
-a high contrast version- give users an opportunity to switch to a legible alternate version so that we page they want to read is easier to read.
- user controlled font size. this allows users to optimize the their desired font choice
- access keys. allows users to acess the site with keystrokes which are isted on the accessibility page.
Complete URLs are made up of four (4) parts. Name and label the four(4) parts from the following URL: http://www.yoursite.com/business/trends/mobility.html
-http is the protocol
-“www.yoursite.com” is the domain name
-“business/trends/” is the path
- “mobility.html” is the file name
XHTML follows the rules of XML, so it follows the markup rules for XML. In short, XHTML requires that documents conform to basic rules. Briefly state any three rules that XHTML documents must follow.
- elements should be properly nested an closed with all atributes quoted. -all tags and attributes must be written in lowercase. -DOCTYPE should be be declared.
Explain the difference between the Internet and the Web
The internet is the vast network of interconnected computers that allows communication and data exchange
while
The web is a collection of web pages through the internet.
Explain what Semantic Markup is.
its the descriptive markup that identifies the intended use of document sections
HTML now offers a new set of elements for describing document structure. In the past, HTML authors used the division element, or <div>, to structure the page. Name and explain any four HTML 5 content sectioning elements.
<main>
<nav>
<header>
<section>
</section></header></nav></main>
State and explain the three ways to combine CSS rules with your HTML code?
Inline Style. involves adding css directly in html element usining the stle attribute.
Internal Style.
External Style. involves linking a separate css file to my html file in the <head > section using a link tag.
Describe what a “web browser” is and name any browser that you know of.
it is an application used to access websites and navigate the internet. the pages are hosted from servers.
Although one person can maintain small web sites, larger sites require groups of people filling a variety of roles. List any four (4) members that may make part of a website development team.
UI/UX designer , content writer , web developer and search engine specialist.
What are the two parts of a style rule?
The selector and declaration
Write a style rule that applies a yellow background color to elements when the user points the mouse to a hypertext link.
a: hover {
background-color: yellow;
}
Write HTML code that inserts an image as a link in a page, meaning that clicking on the image takes the user to http://www.someplace.com
<a>
<img></img>
</a>
Write a style rule for a <p> element that sets the margins to 2em, padding to 1em, and a black, solid 1px border.
p {
margin: 2em;
padding: 1em;
border : 1px solid black;
}