terms Flashcards
1
Q
authoring/markup
A
- preparing content for delivery on the web
- specifically, marking up the content with HTML tags that describe its content and function
- web developers need to have intricate knowledge of HTML and its functions on various browsers and devices
2
Q
development - what are 3 broad disciplines that comprise this?
A
- authoring
- styling
- scripting/programming
3
Q
styling
A
- appearance of the page in browser in controlled by style rules written in CSS
- appearance of the page is handled separately from the HTML markup of the page
4
Q
scripting and programming
A
- javascript is the language that makes elements on web pages do things.
- adds behaviors and functionality to elements in the page and even to browser window itself.
5
Q
frontend design
A
- refers to any aspect of design process that appears in or relates directly to the browser
- graphic design and image production
- interface design
- information design as it pertains to the user’s experience of the site
- HTML document and style sheet development
- javascript
6
Q
backend development
A
- refers to programs and scripts that work on the server behind the scenes to make web pages dynamic and interactive
- generally falls in the hands on experienced programmers
- information design as it pertains to how the information is organized on the server
- forms processing
- database programming
- content management systems
- server side web applications using PHP, JSP, Ruby, ASP.NET, java, other programming languages
7
Q
4 categories of web design
A
- design
- development
- content strategy
- multimedia
8
Q
design
A
- identify the site’s goals, how it will be used, and how visitors move through it
- these tasks fall under realm of interaction design (IxD) - goal is to make site easy and efficient as possible
- user interface design (UI) - narrowly focused on functional organization of the page, and specific tools (buttons, links, menus, etc) that users use to navigate content or accomplish tasks
- user experience design (UX) - holistic view, ensuring entire experience with site is favorable. based on understanding of users and their needs based on observations and interviews.
9
Q
content strategy and creation
A
- content strategist - makes sure that every bit of text on the site, from long explanatory text, to labels on buttons, supports brand identity and marketing goals of company.
- information architect - organizes content logically and for ease of findability. may be responsible for search functionality, site diagrams, and how content and data organized on server.
10
Q
multimedia
A
- sound, video, animation, interactive games added to a website.
- audio video editing, flash development
11
Q
A
12
Q
web related technologies
A
- HTML
- cascading style sheets (CSS)
- javascript and DOM scripting
- server side programming and database management
13
Q
W3C
A
- World Wide Web Consortium
- organization that oversees the development of web technologies.
- for definitive answer on any web technology question, refer to www.w3.org
- also, www.w3.org/consortium
14
Q
HTML
A
- language used to create web page documents.
- not a programming language, is a markup language, which means that it is a system for identifying and describing the various components of a document such as headings, paragraphs, and lists.
- markup indicates the document’s underlying structure
15
Q
CSS
A
- while HTML is used to describe the content on a web page, CSS describe how that content should LOOK.
- presentation is the way the page looks
- CSS controls fonts, colors, background images, line spacing, page layout, etc.
- great tool for automating production, because you can change the way an element looks across all pages on site by editing a single style sheet document.
- can publish web pages with HTML alone, but style sheets allow you not to get stuck with browser’s default styles.
- for professional web design, style sheets are mandatory.