POST MIDTERM Flashcards
What does semantic mean?
Meaning.
What is the purpose of semantic tags?
Rather than generic tags like div for division, the new semantic tags all describe the content of the tag.
What do outliners do?
Outliners can be used as well to generally determine content or what the parts of the page are about.
What is HTML5?
HTML5 is a reworking of the organization of HTML, CSS and JavaScript.
What are five semantic tags?
< header >, < footer >, < nav >, < main >, < article >, < section >, < aside >, < figure >, < figcaption >, < details >, < summary >, < mark >, < time >.
What is <header>?
The top part of a page or section.
What is <footer>?
The bottom part of a page or section.
What is <nav>?
The place for interfaces like menus.
What is <main>?
The main content area (not header, footer, nav).
What is <article>?
A self-contained composition (document or such).
What is <section>?
A chapter, etc. of an article or the main content.
What is <aside>
Supporting content or related information.
What is <figure>?</figure>
Diagrams, pictures, illustrations, etc.
What is <figcaption>?
Text to describe a figure.
What is <details>?</details>
Extra information that can be viewed.
What is <summary> and what can it only be used for?
A summary title for the detail tag only.
What is < mark > ?
For highlighted parts of text.
What is <time>?</time>
Show a date and time.
Why should HTML5 semantic tags have heading tags (h1, h2, h3 and so forth)?
HTML 5 Semantic Tags should have heading tags (h1, h2, h3, etc) applied so that outliners are descriptive.
What does display:none do?
It hides tags.
What are web pages hosted on?
Servers (just computers with software hooked up to the internet). Most common servers are Apache servers.
Why do we use File Transfer Protocol(FTP)?
We use FTP to upload the server and download from the server to our local files.
What permissions can we place on files?
Read, write and execute on the files.
What is the purpose of forms?
Forms allow users to submit information to the site.