Ve
ified Solutions 2026
Updated!!
1. HTML5, CSS, The web development trifecta
JavaScript
2. main HTML5 tag defining the main body of a document. Cannot be the child of the
header, nav, article, aside, or footer elements.
3. header and footer These elements can also be included in article, aside, nav, main, and section
elements, not just on the page itself
4. source This element identifies the file(s) to use in a video or audio element
5. style guide A set of standards for the writing and/or design of documents
6. IE9 This version of IE is the first to support HTML5
7. Add them via JS, What should you do to support HTML5 elements in pre-IE9 browsers.
make them block
via CSS
8. selector The term for the part of CSS code that refers to the element you want to style
9. declaration In CSS, the term for a property and value pair. It must always end with a semicolon
10. rule In CSS, the name for a selector, property and value all grouped together
11. inheritance The word "cascading" in CSS refers to this concept
12. External, embed- The cascading order of CSS style sheets, ordered from lowest priority to highest
ded, inline
13. rel, type, href Linking to a CSS file requires these attributes in the link element
14. style Embedded CSS should be placed in a block defined by this element
, WGU C777 Web Development Applications Exam Questions With 100%
Ve
ified Solutions 2026
Updated!!
15. style Inline CSS should be placed in an attribute with this name
16. document flow The arrangement of content elements on a page and how the space is used.
Does it fall from top to bottom in stacks, or does some content float to one side
or the other?
17. curly braces These are not used when defining inline CSS styles
18. clear Use this CSS property to avoid having floating elements before/after another
element
19. static In CSS, the "normal, or default", position of block elements within a page
20. relative In CSS, positioning a block element relative to another element
21. absolute In CSS, this causes the element to appear to float above the document and can
be positioned as needed. It is completely removed from the rest of the page flow.
22. fixed In CSS, this causes the element to remain in the same position when the page
is scrolled
23. inherit In CSS, this causes the element to inherit its parent's position
24. padding In the box model, this is the space between the content and the border
25. margin In the box model, this is the space between the border and surrounding ele-
ments
26. content, padding, Add all of these up to get the full size of an element in the box model
border, and mar-
gin
27. element[at- This CSS3 selector selects every instance of a specified element whose specified
tribute$=value] attribute ends with the specified value