C376 - Web Development Fundamentals

C376 - Web Development Fundamentals

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

 

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 14, 2020

Cards (29)

Section 1

(29 cards)

 

Front

Used to create non-breaking space on a webpage

Back

What is the semantic meaning of the content inside of a dt tag?

Front

The text inside is a term

Back

How do you use the <th> tag?

Front

It should be a child element of <tr>

Back

What type of URL is: /about-us/

Front

Resource

Back

Inline-level element

Front

An element that does not begin with a new line

Back

Which form element should be used to ensure a user chooses only one option from a list of multiple options?

Front

Select //p.157 A drop down list box (also known as a select box) allows users to select one option from a drop down list.

Back

One reason meta tags are used

Front

To provide information about the webpage to the browser

Back

A web developer wants users to log in with their username and password. Which form elements enable this function?

Front

<input name="username" type="text" /> <input name="password" type="password" />

Back

How does an unordered list tag render list items?

Front

As bulleted items

Back

When including an image on a web page, why is it important to specify the width and height of the image?

Front

It prevents other elements from jumping around as the page loads

Back

Which tag is used to force the browser to display the next text or element on a new line?

Front

<br>

Back

A series of article tags containing the paragraphs

Front

Tags a newspaper's web developer should use to render the various blocks of text contained in the news stories

Back

Which type of style sheet dictates that the styles be declared in a separate file and linked in the head section of an HTML document?

Front

external

Back

What is the purpose of the sup tag?

Front

To indicate that text should be rendered as superscript text

Back

A project manager is unable to bookmark the URL resulting from a form submission. Which form attribute must be updated in order to bookmark the results?

Front

method //specifically the "get" portion which by default is on. p. 151 "If the method attribute is not used, the form data will be sent using the get method." So to not be able to bookmark someone would have had to manually set method to method="post" vs method="get" (default). //This question is almost a trick in that it isn't mentioned specifically in the book nor is it in the video for "forms" in the course. It is only mentioned once at WGU when you do the google form test at the end of the form chapter, which I've included below: Question: How does method="get" process form data? Answer: Appends the form data to the URL so that it is visible. This is great for non-secure data, like a Google search, because the user can bookmark the results that include the values entered in the form. A better definition can be found here: http://www.w3schools.com/tags/att_form_method.asp

Back

What block of text will correctly embed the image "smiley.gif" on a web page?

Front

<img src="smiley.gif" alt="Smiley face">

Back

What is the dl tag?

Front

It is a definition list tag that holds items and their defenitions

Back

In a URL, what is the function of the host?

Front

It identifies which server contains the resource

Back

What is the purpose of a CSS reset style sheet?

Front

To standardize styles for elements across all browsers

Back

<br />

Front

Correct way of closing a self-closing empty element, using XHTML

Back

Semantic elements

Front

Semantic elements label parts of a web page with their purpose

Back

<br/>

Front

Tag used to create a line break

Back

What attribute needs to be set in order to turn a drop down into a select box?

Front

Size. //This question is worded wrong. A drop box is a select box. Period. The question should read: p.158 "You can turn a drop down select box into a box that shows more than one option by adding the size attribute."

Back

Child Element

Front

An element that nests inside a parent element

Back

How many heading tags are available?

Front

Six

Back

Which attribute on an image tag describes text to display when the user hovers their cursor over the image?

Front

title

Back

Refer to the HTML below: <input type="radio" id="funzo" name="funzo-button" value="NO" /> Which HTML should be used to add another option?

Front

<input type="radio" id="funzo-yes" name="funzo-button" value="YES" />

Back

<div style="float:right; width:100px">

Front

Elements and styles most appropriate to display navigation links on the right side of the page

Back

What is the folder or directory of the following URL: http://www.websearcher.com/search?q=HTML+5+Tutorial

Front

/search

Back