App - ANSWER Relatively small applications developed exclusively for mobile devices
- ANSWER structure element in HTML5 that includes hypertext menus to access various pages of the web site
HTML5 API's - ANSWER Cr
...
App - ANSWER Relatively small applications developed exclusively for mobile devices
- ANSWER structure element in HTML5 that includes hypertext menus to access various pages of the web site
HTML5 API's - ANSWER Create Apps for Mobile Devices
Web development Trifecta - ANSWER HTML, CSS, and JavaScript
Benefit of developing Web pages using the Web Development Trifecta - ANSWER You can create Web pages that easily adapt to smartphones, tablets, gaming devices, and smart TVs, as well as to traditional computers
HTML 4.01 Strict - ANSWER required the separation of presentation and content. Deprecation tags we disallowed and generated validation errors.
HTML 4.01 Transitional - ANSWER allowed developers to insert formatting using either CSS or traditional layout instructions
HTML 4.01 Frameset - ANSWER Required for pages that used HTML frames, which placed Web pages inside each other to create separate panes in the browser window.
controls="controls" - ANSWER element must have this attribute and value to incorporate default audio operations.
Poster Attribute - ANSWER Prevents the first frame of the video from displaying while the video is downloading
Chrome - ANSWER Popular web browser that supports MP3, Ogg, and WAV audio formats, as well as many others.
Advantage of using HTML5 APIs when designing Web Pages for mobile devices - ANSWER HTML5 APIs use fewer resources than a proprietary browser plug-in does, such as battery power and CPU memory.
Responsive Design - ANSWER Your web pages respond to user screen size and work in multiple environments
- ANSWER Structure element in HTML5 to include content that is directly related to the subject of the document
- ANSWER Defines the top of the Web page, similar to the header in the word-processing document.
- ANSWER defines portions or areas of a document as necessary, such as a group of articles or images
- ANSWER Defines site content, such as company services, news articles, blogs, images, videos, tweets, and social networking posts.
- ANSWER Defines content that is aside from or additional to the main article content, such as advertisements or news feeds
- ANSWER Defines the bottom of the Web Page, similar to the footer in a word-processing document
Adopting a single W3C standard and apply is consistently to your Web Page markup - ANSWER When you validate you markup, the code will match the DTD (standard syntax rules) that you specify.
Cascading Style Sheets - ANSWER Enables you to place formatting instructions in an external text file to determine how HTML elements in a Web page will display
You will be able to troubleshoot code issues when the GUI Web editor fails - ANSWER Importance of understanding what goes on behind the GUI of a Web Editor
Code validation - ANSWER Checking your code to verify that is complies with the syntax rules of your chosen standard
Canvas - ANSWER HTML5 API that provide a place on a Web page where you can display graphics, animations, videos, and games dynamically without the need for a plug-in.
XHTML vs. HTML - ANSWER XHMTL incorporates the strict syntax rules of XML with the existing set of HTML 4.01 tags to create web documents
loop="loop" - ANSWER audio attribute that allows your audio to play over and over again without stopping
autoplay="autoplay" - ANSWER Specifies that the video will automatically play immediately upon loading
The specified DTD in the declaration on you HTML page - ANSWER W3C Markup Validation Service used to determine the HTML specification against which to validate your Web page markup code
Selector - ANSWER Refers to any element to which designated styles are applied.
Rule - ANSWER is a format instruction that consists of a specified selector and the properties and values applied to it.
Declaration - ANSWER Consists of a property and its value
Semicolon - ANSWER To define multiple declarations for one selector withing a rule, you must separate each declaration with a ______________.
Curly Braces - ANSWER Except when declaring inline styles, you must place properties and their values within _____________.
Comment - ANSWER By placing code in between the /* and */ characters you create a ___________
Inheritence - ANSWER The you define will flow, or cascade, throughout your documents, unless another style defined inside of a page specifically overrides it. This concept is known as ______________.
Static - ANSWER The normal, or default, position of the element within a page.
Relative - ANSWER The element is relative to others on a page, usually because of the top, bottom, left, and right properties.
Absolute - ANSWER The element appears to float above the document and can be positioned as needed it is completely removed from the rest of the page flow.
Fixed - ANSWER The element remains in the same position when the page is scrolled.
Inherit - ANSWER The element inherits its position from the parent element.
Margin - ANSWER In the CSS Box Model, the outer-most box that immediately encloses the border.
Content - ANSWER In the CSS Box Model. the innermost box
Property - ANSWER Changes the way a selector renders in a browser
Padding - ANSWER In the CSS Box Model, the defined area that immediately encloses the content
Font-Family - ANSWER Specifies the typeface to be used
Border - ANSWER In the CSS Box Model, the box that immediately encloses the padding
Fixed-Width Layout - ANSWER Achieved by assigning specific pixel widths to elements. Should be use if you want to create Web pages whose text, image, and layout will not vary from browser to browser.
Inheritance - ANSWER Also known as cascading, the way that styles flow throughout a document or site. A CSS style sheet rule to override styles specified in a linked external style sheet.
Liquid Layout - ANSWER Also known as relative width or fluid layout. Achieved by assigning percentage values to elements.
Multipurpose Internet Mail Extensions (MIME) - ANSWER Defines the file type, such as text or video, and the extension, such as css or mp4, for a user agent or browser.
Implementing the Liquid Layout using CSS - ANSWER The preferred method of designing Web pages for mobile devices. It allows the size of each element to be flexible and will change dynamically depending on the size of the browser window.
CSS Classes - ANSWER Useful for floating images to the left or right of text in HTML5
Purpose of using a style guide when designing your Web site - ANSWER To ensure uniformity in style and formatting with a document and across multiple documents
The HREF attribute - ANSWER Specifies the location of the linked document
Static, relative, absolute, fixed, and inherit - ANSWER Position property value CSS provide to position block-level elements
Disadvantage of using CSS3 - ANSWER Most non-HTML5-compliant browsers cannot interpret CSS3
Creating a company intranet using HTML5 and CSS elements when using Windows XP and IE8 - ANSWER You must add JavaScript code to your HTML documents to create HTML5 structural elements, and add a new rule to CSS to define the HTML5 structural elements as block-level elements.
Support HTML5 in older IE browsers - ANSWER Remy Sharp has created a script that has become the de facto standard for many Web developers around the world. The script enables Web developers to:
element:first-of-type - ANSWER CSS3 selector that selects every instance of a specified element that is the first of its parent.
element:last-of-type - ANSWER CSS3 selector that selects every instance of a specified element that is the last of its parent
element:disabled - ANSWER CSS3 selector that selects every disabled instance of a specified element
element:enabled - ANSWER CSS3 selector that selects every enabled instance of a specified element
-webkit- - ANSWER A prefix that ensures that the CSS3 code that is precedes will render properly in Chrome, Safari, and iOS browsers.
-o- - ANSWER A prefix that ensures that the CSS3 code that precedes will render properly in Opera Browsers.
-mozilla- - ANSWER A prefix that ensures that the CSS3 code that precedes will render properly in FireFox browsers.
-ms- - ANSWER A prefix that ensures that the CSS3 code that precedes will render properly in Internet Explorer browsers
background-clip - ANSWER Determines whether the background extends into the border or not.
border-box - ANSWER A background-clip property that extends the background to the outside edge of the border (default setting)
padding-box - ANSWER A background-clip property that extends the background to the padding area but not into the border
content-box - ANSWER A background-clip property that clips the background within the content box
element1~element2 - ANSWER A selector that selects each occurence of element2 that is preceded by element1. The two elements must have the same parent.
box-shadow - ANSWER A border property to use if wanting to add a configurable shadow to a box
h-shadow - ANSWER A box-shadow value that determines the horizontal shadow position, also referred as the x-offset
v-shadow - ANSWER A box-shadow value that determines the vertical shadow position, also referred as the y-offset
blur - ANSWER A box-shadow value that determines the distance of the shadows blur.
spread - ANSWER A box-shadow value that determines the shadows size
color - ANSWER A box-shadow value that determines the shadows color
inset - ANSWER A box-shadow value that creates an inward shadow instead of an outward shadow
box-shadow: 5px 5px 0px 5px #888888 - ANSWER box-shadow
5px of h-shadow
5px of v-shadow
0px of blur
5px of spread
#888888 color
border-image - ANSWER A CSS3 property that creates a border using an image instead of just a line.
border-radius - ANSWER A CSS3 property that creates rounded corners
length - ANSWER A background-size property value that sets the backgrounds width first then the height. Can only be in specified pixels, em units, etc.
percentage - ANSWER A background-size property value that sets the backgrounds width first then the height. The value specified determines the size of the image in relation to the parent element.
cover - ANSWER A background-size property value that scales the background image to the largest size possible that completely covers the background area of the parent container while maintaining aspect ratio of the image.
contain - ANSWER A background-size property value that scales the background image to the largest size possible that allows both width and height to fit within the specified content area.
@font-face - ANSWER Properties required to use are the font-family and the src properties
CSS3 new text effect properties - ANSWER CSS3 text effect properties can be used to produce effects that previously required the use of images
hanging-punctuation - ANSWER Specifies whether (and how) punctuation characters can appear outside the line box at the beginning or end of a full line of text
[Show More]