Section 1

Preview this deck

A web design team was working together to create a website. They each used a version of code that they were most comfortable with. They website is not rendering properly in their customers browsers. What do they need to do to solve the problem?

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

Section 1

(50 cards)

A web design team was working together to create a website. They each used a version of code that they were most comfortable with. They website is not rendering properly in their customers browsers. What do they need to do to solve the problem?

Front

They need to rewrite the code so that it conforms to a single W3C HTML Standard

Back

Julie is redesigning the website for Kimber's Dance Studio. She plans to set her styles using RGB colors and wants to use pure blue. What color code will she use?

Front

0, 0, 255

Back

What tag is used to create an unordered list?

Front

<ul></ul>

Back

When previewing a webpage using a GUI HTML editor, web designers are limited to

Front

the browsers installed on their computer or device.

Back

Angelica is creating a style sheet to format the pages on her company's website. One section will have a dark green background with white text. Which hexadecimal reference will Angelica use to specify the text color for this portion of the webpage?

Front

#FFFFFFF

Back

Cecily created her company's Intranet site using proprietary HTML. The company recently updated its software and has mandated the use of a new web browser. The Intranet site that Cecily developed no longer renders its content consistently. What should she do to ensure that the websites content renders consistently regardless of the browser used?

Front

Update the website so that it uses a single HTML standard consistently.

Back

Create an HTML hidden comment tag

Front

<!--Last modified 11/12/16, John Smith -->

Back

Fred wants to establish a mobile presence for his website. What should he do to ensure that he offers mobile-friendly content to the largest audience possible?

Front

He should create a mobile website.

Back

What HTML tag creates a hard return?

Front

<br />

Back

Why doesn't the following code validate as HTML5? <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <link rel="stylesheet" type="text/css" href="stylesheet.css" /> <title>This is the Title</title> <head> <body> <p> Super important information </p> <body>

Front

There is no closing </html> tag.

Back

List some considerations you should make during the initial meeting with stakeholders:

Front

You should explain technical concepts because the stakeholders may not understand technical terms and requirements.

Back

What does a royalty- free license allow you to do when using stock images on a website?

Front

Use the images without paying a fee for each use.

Back

HTML validator website-

Front

https://validator.w3.org

Back

I need the new HTML5 structural elements to be styled consistently in all browsers. I need to create each element using JavaScript and add a CSS rule to set the element type to ensure that the site will render successfully in older web browsers. What element type should the CSS rule set them to be?

Front

block

Back

Create a partial url to link to your index page.

Front

<a href="index.html"> Home </a>

Back

Cat is visiting the website for the Worlds Best Icecream but she is questioning the validity of the website because she keeps encountering hyperlinks that lead to error pages. What maintenance task should the website owner do to fix this?

Front

Ensure that all of the hyperlinks point to valid webpages.

Back

Sarah needs to center and indent a quote on his company's webpage. What is the best way to do this using HTML5?

Front

<blockquote>

Back

Whose input needs to be considered during the initial website planning meeting?

Front

The stakeholders

Back

Rupert works as a web designer and does not know anything about managing a web server, bandwidth or a database. What type of company should she outsource these tasks to?

Front

A cloud service provider

Back

To ensure cross-platform compatibility and functionality web developers should validate their webpages and:

Front

test webpages in the most common browsers, including current and older versions.

Back

Text level element (give examples)-

Front

tags that affect a single word or character <br> <strong> <em>

Back

Jolene needs to link to embed an image that is in a direction named "images" that is one level higher than the webpage that she is currently editing. What source code will she use?

Front

../images/picture.jpg

Back

In what circumstances would purchasing stock photos for a website be a good idea?

Front

When you are short on time, but have enough money in the budget to purchase the photos.

Back

What software application allows web designers to edit and validate source code as well as preview their web pages in multiple browsers?

Front

A Graphical User Interface (GUI editor)

Back

Why doesn't the following code validate as HTML5? <!DOCTYPE html> <html> <head> <title>This is the title of my website</title> </head> <body> <p> <blockquote>"This is a really important quote" - Someone Famous</blockquote> </p> </body> </html>

Front

Blockquote is a paragraph level tag and therefore should not be inside of a <p> tag

Back

What tag is used to create an ordered list?

Front

<ol></ol>

Back

When planning a webpage it is important to adhere to the organizations design standards. What do these standards include?

Front

Information about the organizations branding and marketing

Back

Trade secret-

Front

Intellectual property that protects documents such as business plans and sales contracts

Back

Fully qualified url-

Front

<a href="c:\documents\johnsmith\home\index.html"> Home </a>

Back

Infringement-

Front

A violation of copyright or trademark

Back

List considerations that need to be made when creating mobile websites:

Front

Use ample whitespace to give the impression of an uncluttered website. Eliminate all website banners and advertisements That the website pages will be viewed on a smaller screen.

Back

Block level element (give examples)-

Front

tags that affect an entire paragraph <p> <blockquote> <h1>

Back

Copying HTML and CSS from another website is considered ________________________.

Front

unethical

Back

Non-Disclosure Agreement-

Front

A legal document preventing a person from sharing intellectual property or trade secrets.

Back

What is the purpose of leaving comments in your code?

Front

To explain the purpose of code sections to other developers, or to leave yourself reminders

Back

Create the non-keyboard entity that will add a single space.

Front

&nbsp;

Back

XML-

Front

A web language used to describe data elements on the webpage.

Back

What's the difference between a mobile app and a mobile website?

Front

A mobile app is faster because it does not necessarily use the browser. A mobile website will reach a greater audience.

Back

What are the HTML5 structure tags?

Front

<header> <footer> <nav> <article> <aside>

Back

Lisa's image is loading on her page and looks perfect. But her image tag will not validate. Which attribute is she missing?

Front

the alt attribute

Back

On-site web analytics

Front

Tracks and analyzes the actions of a user while they visit your website. Such as how long they visited a page and which pages they visited.

Back

A single document that contains information about the stakeholders, the website goals, the development process, the site navigation and the required technologies.

Front

Wireframe

Back

What is the tag used to determine what version of HTML the webpage uses?

Front

the <!DOCTYPE> tag

Back

After Victor met with the stakeholders he emailed them a storyboard for approval. What does this document include?

Front

A statement discussing the purpose of the website and the intended audience and a rough outline of the pages needed.

Back

Alana is coding a Web site using a GUI editor. While she works she wants to be able to quickly check her code for errors and ensure that it complies with the HTML standard. What should she do?

Front

Use the built in validation tool.

Back

What file formats support animation?

Front

GIF89a and PNG

Back

Write the tag used to center a paragraph.

Front

<p style="text-align:center"> </p>

Back

H1-H6 create what?

Front

heading tags- which are paragraph level elements

Back

What are the parts of a wireframe?

Front

determining website goals, outlining the development process and site navigation, and identifying required technologies.

Back

I used an image map as my navigation. I need to add text-based navigation onto my page as well. Where should I put it?

Front

In the <footer>

Back

Section 2

(35 cards)

Explain why a website can no longer be structured using tables.

Front

It will fail validation We use the HTML5 structure tags and div tags to ensure that the website can be rendered by all standard compliant web browsers and mobile devices.

Back

#FFFFFF

Front

Hexadecimal White

Back

Create a <form> tag that will correctly process data.

Front

<form method="post" action="http://www.anyserver.com/cgi-bin/email"> </form>

Back

Your boss wants to provide links to forms on the company's file server to the company's intranet site. Your company's intranet site is not able to link to the company's file server for security reasons. You know that you need to upload the forms to web server that hosts the company's intranet site. What else should you do?

Front

create local relative links to the files

Back

255, 255, 255

Front

RGB White

Back

I need to create a webpage that compares four different medical insurance plans. What do I need to do to accomplish this?

Front

use page structure tags to layout the webpage and use a table to organize the medical insurance plan information.

Back

What is the order of precedence for CSS?

Front

Inline styles override all other styles

Back

Create a video tag that embeds the video named "batting_practice.mp4" and batting_practice.webm.

Front

<video height="300 width="250 controls="controls" poster="picture.jpg"> <source src="batting_practice.mp4" type="video/mp4" /> <source src="batting_practice.webm" type="video/webm" /> The video cannot be displayed at this time. </video>

Back

0, 255, 0

Front

RGB Green

Back

What website do we use to validate our html?

Front

http://validator.w3.org

Back

What element is used to set the coordinates for a hot spot on an image map?

Front

<area>

Back

Holly is trying to figure out why her company's website does not attract visitors. She speaks with the company's stakeholders and learns that the site did not have a defined purpose and was not designed with their target audience in mind. What kind of document should Holly recommend the company create before she redesigns the website?

Front

A storyboard.

Back

What is the website we use to validate CSS?

Front

http://jigsaw.w3.org

Back

255, 0, 0

Front

RGB Red

Back

0, 0, 255

Front

RGB Blue

Back

#000000

Front

Hexadecimal Black

Back

Change the code so that the user can select more than one option from the drop down menu: <select name="Foods"> <option>Apples</option> <option>Cucumbers</option> <option>Carrots</option> <option>Mangos</option> </select>

Front

<select name="Foods" multiple="multiple"> <option>Apples</option> <option>Cucumbers</option> <option>Carrots</option> <option>Mangos</option> </select>

Back

Which attribute of the form field tags (<input>, <textarea>, etc.) is used to organize the user data into the name=value pairs so that it can be sent to the processing script on the server?

Front

The name attribute

Back

The set of standards created by the Web Accessibility Initiative that promotes accessibility for all web users, including those with disabilities.

Front

Web Content Accessibility Guidelines (WCAG)

Back

#FF0000

Front

Hexadecimal Red

Back

Create the code for an image map with three hot spots- One rectangle, one circle and one polygon.

Front

<map name="peanuts"> <area shape="rect" coords="0,0,67,55" href="http://www.google.com" alt="link to google" /> <area shape="circle" coords="24,32,8" href="http://www.nike.com" alt="link to nike" /> <area shape="poly" coords="3,6,19,55,23,82" href="index.html" alt="link to home page" /> </map>

Back

Lisa is designed a website for Walkers and Wheelchairs Inc. She knows her target audience is primarily elderly. What should she do to ensure that the website is accessible?

Front

Comply with the WAI's Web Content Accessibility Guidelines

Back

Create an image tag linking the picture named dog.jpg located in the images folder. Give it a height of 400 pixels and a width of 350 pixels, connect it to a CSS rule to make it float left and give it the alternate text "My dog Scooby."

Front

<img src="images/dog.jpg" alt="My dog Scooby" height="400" width="350" class="floatleft" />

Back

0, 0, 0

Front

RGB Black

Back

#0000FF

Front

Hexadecimal Blue

Back

What attribute is used with the <input> tag to determine the type of field that will appear?

Front

The type attribute

Back

#00FF00

Front

Hexadecimal Green

Back

What attributes are used with the area tag to create hot spots on an image map?

Front

shape alt href coords

Back

Evaluate the following HTML and CSS code: <header> <h1>Camping Store</h1> <img src="images/logo.jpg" width="100" height="75" alt="Camping Store Logo" /> </header> header { background: #FFFFFF url(header_bg.gif) repeat-x top right; height:100px; width:100%; } header img { float:left; } Where on the webpage does background display?

Front

At the top, right of the header

Back

Cookies-

Front

A website feature that allows you to save usernames and passwords.

Back

My webpage current has white text. I want to override it so the text is orange for Halloween. What feature of CSS allows me to do this?

Front

inheritance

Back

What two attributes have to be included in the form tag?

Front

method and action

Back

HTML5 supports which CSS standards?

Front

All standards- CSS1, CSS2 and CSS3

Back

Write the code that links an external CSS sheet to your HTML document.

Front

<link rel="stylesheet" type="text/css" href="styles.css" />

Back

Janice is creating a table to compare the price of various photography packages that customers on her e-commerce website can purchase. She wants to a table cell with the name of each package, that is centered both horizontally and vertically. Which HTML element should she use?

Front

<th>

Back