WGU D276 Web Development Foundations UPDATED ACTUAL QUESTIONS AND
CORRECT ANSWERS
What required <form> attribute specifies the manner in Method
which the browser will send form data to a web server?
This required <form> attribute specifies the name and Action
location of the CGI script used to process the form
What <form> method attribute value allows sending more Post
characters and is slightly more secure when submitting a
Web-based form?
In HTML, what is a container? Part of a web document body that has opening and closing tags
In HTML, what is a parent container A container in which another element resides
HTML elements that are containers <footer>, <header>, <section>, and <span>
A block element with no semantic meaning <div>
WHat type of HTML element fills the minimum space Inline Element
possible in the parent container and can only contain text
of other elements of this type?
Generic HTML element that creates inline containers to <span>
facilitate the managing content on a webpage. Has no
semantic meaning
What types of elements can be insides a block element? Inline and block elements
, What types of elements can be insides an inline element? Inline elements
What HTML element do we use to facilitate information <form>
gathering for submission to a server?
What HTML attribute should be used if a <form> field Enctype
contains binary data that the normal format of the query
string is not sufficient to encode?
Five primary attributes for a <input> element id, name, type, value, placeholder
What is the <input> type attribute value of a text box text
widget?
Which HTML element should be used to produce a <input>
submit button widget in form?
Which <input> attribute allows the input to start with a value
default value?
Which <input> attribute provides a hint to the user about placeholder
the information being requested?
Which attribute inside the <label> element is used to for
associate the label with a widget?
True of false? An <option> element must have a value False
attribute.
Which element can create a button with an image? <button>
Four <input> types that exist for entering specific types of email, search, tel, url
text.
Audio formats supported by nearly all web browsers AAC, MP3
Correct HTML for referring to an external style sheet <link rel="stylesheet" type="text/css" href="mystyle.css">
Where in an HTML document is the correct place to refer In the <head> section
to an external style sheet?
Which HTML tag is used to define an internal style sheet? <style>
Which HTML attribute is used to define inline styles? style
Which is the correct CSS syntax? body {color:black;}
How to insert CSS comment / this is a comment /
CORRECT ANSWERS
What required <form> attribute specifies the manner in Method
which the browser will send form data to a web server?
This required <form> attribute specifies the name and Action
location of the CGI script used to process the form
What <form> method attribute value allows sending more Post
characters and is slightly more secure when submitting a
Web-based form?
In HTML, what is a container? Part of a web document body that has opening and closing tags
In HTML, what is a parent container A container in which another element resides
HTML elements that are containers <footer>, <header>, <section>, and <span>
A block element with no semantic meaning <div>
WHat type of HTML element fills the minimum space Inline Element
possible in the parent container and can only contain text
of other elements of this type?
Generic HTML element that creates inline containers to <span>
facilitate the managing content on a webpage. Has no
semantic meaning
What types of elements can be insides a block element? Inline and block elements
, What types of elements can be insides an inline element? Inline elements
What HTML element do we use to facilitate information <form>
gathering for submission to a server?
What HTML attribute should be used if a <form> field Enctype
contains binary data that the normal format of the query
string is not sufficient to encode?
Five primary attributes for a <input> element id, name, type, value, placeholder
What is the <input> type attribute value of a text box text
widget?
Which HTML element should be used to produce a <input>
submit button widget in form?
Which <input> attribute allows the input to start with a value
default value?
Which <input> attribute provides a hint to the user about placeholder
the information being requested?
Which attribute inside the <label> element is used to for
associate the label with a widget?
True of false? An <option> element must have a value False
attribute.
Which element can create a button with an image? <button>
Four <input> types that exist for entering specific types of email, search, tel, url
text.
Audio formats supported by nearly all web browsers AAC, MP3
Correct HTML for referring to an external style sheet <link rel="stylesheet" type="text/css" href="mystyle.css">
Where in an HTML document is the correct place to refer In the <head> section
to an external style sheet?
Which HTML tag is used to define an internal style sheet? <style>
Which HTML attribute is used to define inline styles? style
Which is the correct CSS syntax? body {color:black;}
How to insert CSS comment / this is a comment /