Markup and site dev fundamentals Flashcards
What is the WAI
The web accessibility initiative was created by the W3C - it focuses on user agent (i.e. browser) accessibility, accessibility guidelines, and accessibility for developers
what are WCAG
Web Content Accesssibility guidelines developed by WAI to provide universal accessibility standards
what are key components of a website plan or storyboard
statement indicating the purpose and intended audience.
Rough outline of pages needed
what is DTD
Document type definition - a set of rules in a text file defining structure, syntax, and vocab related to tags and attributes for a corresponding document
what is MIME
multipurpose internet meail extensions - the protocol that maps file name extensions to the appropriate applications
What is SGML
standardized general markup language - metalanguage driving HTML and XHTML
Which two languages describe the data from which webpages are created, but do not format?
HTML, XHTML, XML, SGML, CSS
XML, SGML
Which languages describe a documents visual layout HTML, XHTML, XML, SGML
HTML and XHTML
what is the manifest tag and where does it live
manifest lists the address of offline cache manifest - used for offline browsing. Stored in the tag level
how to use lang tag
what does the pre tag do /pre
prese3rves line breaks and spacing as in the original text
what are WCAG
Web Content Accesssibility guidelines developed by WAI to provide universal accessibility standards
what are key components of a website plan or storyboard
statement indicating the purpose and intended audience.
Rough outline of pages needed
what is DTD
Document type definition - a set of rules in a text file defining structure, syntax, and vocab related to tags and attributes for a corresponding document
what is unicode
a universal character set designed to support all written languages and disciplines (like math)
What is SGML
standardized general markup language - metalanguage driving HTML and XHTML
Which two languages describe the data from which webpages are created, but do not format?
HTML, XHTML, XML, SGML, CSS
XML, SGML
Which languages describe a documents visual layout HTML, XHTML, XML, SGML
HTML and XHTML
what is the manifest tag and where does it live
manifest lists the address of offline cache manifest - used for offline browsing. Stored in the tag level
how to use lang tag
what is the meta tag and where does it live
meta can include info about page name, descriptions, http data and characters. It lives under
what does the pre tag do /pre
g
how would you align a p tag to center
p style=”text-align: center;” text /p
which tags create bold and italic text
<strong> and <em></em></strong>
what is comment syntax in html
what is unicode
a universal character set designed to support all written languages and disciplines (like math)
how many heading styles are there in HTML
6
what is a css selector
the indicator of the element. i.e. body below
body {
background-color: lightblue;
}