27 Pages

w6_ch3

Course: IT 202, Spring 2011
School: NJIT
Rating:
 
 
 
 
 

Word Count: 2389

Document Preview

Introduction - 3.1 The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS3 is on its way - CSSs provide the means to control and change presentation of HTML documents - CSS is not technically HTML, but can be embedded in HTML documents - A style sheet is a syntactic mechanism for specifying style information - Style sheets allow you to impose a standard style on a whole document, or even a...

Register Now

Unformatted Document Excerpt

Coursehero >> New Jersey >> NJIT >> IT 202

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Introduction - 3.1 The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS3 is on its way - CSSs provide the means to control and change presentation of HTML documents - CSS is not technically HTML, but can be embedded in HTML documents - A style sheet is a syntactic mechanism for specifying style information - Style sheets allow you to impose a standard style on a whole document, or even a whole collection of documents - Style is specified for a tag by the values of its properties Chapter 3 2010 by Addison Wesley Longman, Inc. 1 3.2 Levels of Style Sheets - There are three levels of style sheets 1. Inline - specified for a specific occurrence of a tag and apply only to that tag - This is fine-grain style, which defeats the purpose of style sheets - uniform style 2. Document-level style sheets - apply to the whole document in which they appear 3. External style sheets - can be applied to any number of documents - When more than one style sheet applies to a specific tag in a document, the lowest level style sheet has precedence - In a sense, the browser searches for a style property spec, starting with inline, until it finds one (or there isnt one) Chapter 3 2010 by Addison Wesley Longman, Inc. 2 3.2 Levels of Style Sheets (continued) - Inline style sheets appear in the tag itself - Document-level style sheets appear in the head of the document - External style sheets are in separate files, potentially on any server on the Internet - Written as text files with the MIME type text/css - A <link> tag is used to specify that the browser is to fetch and use an external style sheet file <link rel = "stylesheet" type = "text/css" href = "http://www.wherever.org/termpaper.css"> </link> - An alternative way to reference an external style sheet: @import url(filename); - Appears at the beginning of the content of a style element (later) - External style sheets can be validated http://jigsaw.w3.org/css-validator/ validator-upload.html Chapter 3 2010 by Addison Wesley Longman, Inc. 3 3.3 Style Specification Formats - Format depends on the level of the style sheet - Inline: - Style sheet appears as the value of the style attribute - General form: style = "property_1: value_1; property_2: value_2; property_n: value_n" - Document-level: - Style sheet appears as a list of rules that are the content of a <style> tag - The <style> tag must include the type attribute, set to "text/css" - Comments in the rule list must have a different form - use C comments (/**/) Chapter 3 2010 by Addison Wesley Longman, Inc. 4 3.3 Style Specification Formats (continued) - General form: <style type = "text/css"> rule list </style> - Form of the rules: selector {list of property/values} - Each property/value pair has the form: property: value - Pairs are separated by semicolons, just as in the value of a <style> tag - External style sheets - Form is a list of style rules, as in the content of a <style> tag for document-level style sheets Chapter 3 2010 by Addison Wesley Longman, Inc. 5 3.4 Selector Forms 1. Simple Selector Forms - The selector is a tag name or a list of tag names, separated by commas - Examples: h1, h3 p - Contextual selectors ol ol li 2. Class Selectors - Used to allow different occurrences of the same tag to use different style specifications - A style class has a name, which is attached to a tag name - For example, p.narrow {property/value list} p.wide {property/value list} Chapter 3 2010 by Addison Wesley Longman, Inc. 6 3.4 Selector Forms (continued) 2. Class Selectors (continued) - The class you want on a particular occurrence of a tag is specified with the class attribute of the tag - For example, <p class = "narrow"> ... </p> ... <p class = "wide"> ... </p> 3. Generic Selectors - A generic class can be defined if you want a style to apply to more than one kind of tag - A generic class must be named, and the name must begin with a period Chapter 3 2010 by Addison Wesley Longman, Inc. 7 3.4 Selector Forms (continued) 3. Generic Selectors (continued) - Example, .sale { } - Use it as if it were a normal style class <h1 class = "sale"> Weekend Sale </h1> ... <p class = "sale"> </p> 4. id Selectors - An id selector allows the application of a style to one specific element - General form: #specific-id {property-value list} - Example: #section14 {...} 5. Universal Selectors * {color: red;} - Applies to all elements in the document Chapter 3 2010 by Addison Wesley Longman, Inc. 8 3.4 Selector Forms (continued) 6. Pseudo Classes - Pseudo classes are styles that apply when something happens, rather than because the target element simply exists - Names begin with colons - hover classes apply when the mouse cursor is over the element - focus classes apply when an element has focus <!-- pseudo.html --> <html xmlns = "http://www.w3.org/1999/xhtml"> <head> <title> Checkboxes </title> <style type = "text/css"> input:hover {background: pink; color: red;} input:focus {background: lightblue; color: blue;} </style> </head> <body> <form action = ""> <p> Your name: <input type = "text" /> </p> </form> </body> </html> Chapter 3 2010 by Addison Wesley Longman, Inc. 9 3.5 Property Value Forms - There are 60 different properties in 7 categories: - Fonts - Lists - Alignment of text - Margins - Colors - Backgrounds - Borders - Property Value Forms - Keywords - left, small, - Not case sensitive - Length - numbers, maybe with decimal points - Units: px - pixels in - inches cm - centimeters mm - millimeters pt - points pc - picas (12 points) em - height of the letter m ex - height of the letter x - No space is allowed between the number and the unit specification e.g., 1.5 in is illegal! Chapter 3 2010 by Addison Wesley Longman, Inc. 10 3.5 Property Value Forms (continued) - Percentage - just a number followed immediately by a percent sign - URL values - url(protocol://server/pathname) - Colors - Color name - rgb(n1, n2, n3) - Numbers can be decimal or percentages - Hex form: #XXXXXX - Property values are inherited by all nested tags, unless overriden 3.6 Font Properties - font-family - Value is a list of font names - browser uses the first in the list it has - font-family: Arial, Helvetica, Futura - Generic fonts: serif, sans-serif, cursive, fantasy, and monospace (defined in CSS) - Browser has a specific font for each Chapter 3 2010 by Addison Wesley Longman, Inc. 11 3.6 Font Properties (continued) - If a font name has more than one word, it should be single-quoted - font-size - Possible values: a length number or a name, such as smaller, xx-large, etc. - Font variants - Default is normal, but can be set to small-caps - font-style - italic, oblique (useless), normal - font-weight - degrees of boldness - bolder, lighter, bold, normal - Could specify as a multiple of 100 (100 900) - font - For specifying a list of font properties font: bolder 14pt Arial Helvetica - Order must be: style, weight, size, name(s) Chapter 3 2010 by Addison Wesley Longman, Inc. 12 3.6 Font Properties (continued) SHOW fonts.html and display SHOW fonts2.html and styles.css and display - The text-decoration property - line-through, overline, underline, none SHOW decoration.html & display - letter-spacing value is any length property value 3.7 List properties - list-style-type - Unordered lists - Bullet can be a disc (default), a square, or a circle - Set it on either the <ul> or <li> tag - On <ul>, it applies to all items in the list <h3> Some Common Single-Engine Aircraft </h3> <ul style "list-style-type: = square"> <li> Cessna Skyhawk </li> <li> Beechcraft Bonanza </li> <li> Piper Cherokee </li> </ul> Chapter 3 2010 by Addison Wesley Longman, Inc. 13 3.7 List properties (continued) - On <li>, list-style-type applies to just that item <h3> Some Common Single-Engine Aircraft </h3> <ul> <li style = "list-style-type: disc"> Cessna Skyhawk </li> <li style = "list-style-type: square"> Beechcraft Bonanza </li> <li style = "list-style-type: circle"> Piper Cherokee </li> </ul> Chapter 3 2010 by Addison Wesley Longman, Inc. 14 3.7 List properties (continued) - Could use an image for the bullets in an unordered list - Example: <li style = "list-style-image: url(bird.jpg)"> - On ordered lists - list-style-type can be used to change the sequence values Property value decimal upper-alpha lower-alpha upper-roman lower-roman Sequence type First four Arabic numerals Uc letters Lc letters Uc Roman Lc Roman 1, 2, 3, 4 A, B, C, D a, b, c, d I, II, III, IV i, ii, iii, iv SHOW sequence_types.html and display - CSS2 has more, like lower-greek, and hebrew, and armenian Chapter 3 2010 by Addison Wesley Longman, Inc. 15 3.8 Colors - Color is a problem for the Web for two reasons: 1. Old monitors vary widely 2. Old browsers vary widely - There are three color collections 1. There is a set of 17 colors that are guaranteed to be displayable by all graphical browsers on all color monitors black navy blue green teal lime aqua maroon orange 000000 000080 0000FF 008000 008080 00FF00 00FFFF 800000 FFA500 purple olive gray silver red fuchia yellow white 800080 808000 808080 C0C0C0 FF0000 FF00FF FFFF00 FFFFFF - There are 140 named colors see Appx. B 2. There is a much larger set, the Web Palette - 216 colors - Use hex color values of 00, 33, 66, 99, CC, and FF Chapter 3 2010 by Addison Wesley Longman, Inc. 16 3.8 Colors (continued) 3. Any one of 16 million different colors ___________________________________________ - The color property specifies the foreground color of elements <style type = "text/css" > th.red {color: red} th.orange {color: orange} </style> <table border = "5"> <tr> <th class = "red"> Apple </th> <th class = "orange"> Orange </th> <th class = "orange"> Screwdriver </th> </tr> </table> - The background-color property specifies the background color of elements SHOW back_color.html and display Chapter 3 2010 by Addison Wesley Longman, Inc. 17 3.9 Alignment of Text - The text-indent property allows indentation - Takes either a length or a % value - The text-align property has the possible values, left (the default), center, right, or justify - Sometimes we want text to flow around another element - the float property - The float property has the possible values, left, right, and none (the default) - If we have an element we want on the right, with text flowing on its left, we use the default text-align value (left) for the text and the right value for float on the element we want on the right Chapter 3 2010 by Addison Wesley Longman, Inc. 18 3.9 Alignment of Text (continued) <img src = "c210.jpg" style = "float: right" /> -- Some text with the default alignment - left Chapter 3 2010 by Addison Wesley Longman, Inc. 19 3.10 The Box Model - Borders every element has a border-style property - Controls whether the element has a border and if so, the style of the border - border-style values: none, dotted, dashed, and double - border-width thin, medium (default), thick, or a length value in pixels - Border width can be specified for any of the four borders (e.g., border-top-width) - border-color any color - Border color can be specified for any of the four borders (e.g., border-top-color) SHOW borders.html and display Chapter 3 2010 by Addison Wesley Longman, Inc. 20 3.10 The Box Model (continued) - Margin the space between the border of an element and its neighbor element - The margins around an element can be set with margin-left, etc. - just assign them a length value <img src = "c210.jpg " style = "float: right; margin-left: 0.35in; margin-bottom: 0.35in" /> Chapter 3 2010 by Addison Wesley Longman, Inc. 21 3.10 The Box Model (continued) - Padding the distance between the content of an element and its border - Controlled by padding, padding-left, etc. SHOW marpads.html and display 3.11 Background Images - The background-image property SHOW back_image.html and display - Repetition can be controlled - background-repeat property - Possible values: repeat (default), no-repeat, repeat-x, or repeat-y - background-position property - Possible values: top, center, bottom, left, or right Chapter 3 2010 by Addison Wesley Longman, Inc. 22 3.12 The <span> and <div> tags - One problem with the font properties is that they apply to whole elements, which are often too large - Solution: a new tag to define an element in the content of a larger element - <span> - The default meaning of <span> is to leave the content as it is <p> Now is the <span> best time </span> ever! </p> - Use <span> to apply a document style sheet to its content <style type = "text/css"> .bigred {font-size: 24pt; font-family: Ariel; color: red} </style> ... <p> Now is the <span class = "bigred"> best time </span> ever! </p> Chapter 3 2010 by Addison Wesley Longman, Inc. 23 3.12 The <span> and <div> tags (continued) - The <span> tag is similar to other HTML tags, they can be nested and they have id and class attributes - Another tag that is useful for style specifications: <div> - Used to create document sections (or divisions) for which style can be specified - e.g., A section of five paragraphs for which you want some particular style Chapter 3 2010 by Addison Wesley Longman, Inc. 24 3.12 Conflict Resolution - A conflict occurs when there are two or more values for the same property on the same element - Sources of conflict: 1. Conflicting values between levels of style sheets 2. Within one style sheet 3. Inheritance can cause conflicts 4. Property values can come from style sheets written by the document author, the browser user, and the browser defaults - Resolution mechanisms: 1. Precedence rules for the different levels of style sheets 2. Source of the property value 3. The specificity of the selector used to set the property value 4. Property value specifications can be marked to indicate their weight (importance) Chapter 3 2010 by Addison Wesley Longman, Inc. 25 3.12 Conflict Resolution (continued) - Weight is assigned to a property value by attaching !important to the value - Conflict resolution is a multistage process, called the cascade: 1. Gather all of the style specs from the different levels of style sheets 2. All available specs, from all sources, are sorted by origin and weight, using the following rules, which are given in precedence order: a. Important declarations with user origin b. Important declarations with author origin c. Normal declarations with author origin d. Normal declarations with user origin e. Any declarations with browser (or other user agent) origin Chapter 3 2010 by Addison Wesley Longman, Inc. 26 3.12 Conflict Resolution (continued) 3. If any conflicts remain, sort them by specificity: a. id selectors b. Class and pseudo-class selectors c. Contextual selectors d. Universal selectors 4. If there are still conflicts, resolve them by precedence to the most recently seen specification Chapter 3 2010 by Addison Wesley Longman, Inc. 27
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

NJIT - IT - 202
4.1 Overview of JavaScript- Originally developed by Netscape, as LiveScript- Became a joint venture of Netscape and Sun in1995, renamed JavaScript- Now standardized by the European ComputerManufacturers Association as ECMA-262(also ISO 16262)- Well
NJIT - IT - 202
5.1 JavaScript Execution Environment- The JavaScript Window object represents thewindow in which the browser displays documents- The Window object provides the largest enclosingreferencing environment for scripts- All global variables are properties
NJIT - IT - 202
6.1 IntroductionDef: A dynamic HTML document is one whose tagattributes, tag contents, or element styleproperties can be changed after the documenthas been and is still being displayed by a browser6.2 Positioning Elements- CSS-P was released by W3C
Virginia Tech - ENGE - 1024
Computer Orientation Questions Part 1These questions are available as preparation for some of the quiz 1 content. You can expect these fourquestions to be a subset of your quiz 1 questions. Quiz 1 will occur online from 5:30 PM, August 31 to5:00 PM, Se
Virginia Tech - ENGE - 1024
Computer Orientation Questions Part 2These questions are available as preparation for some of the quiz 2 content. You can expect thesequestions to be a subset of your quiz 2 questions. Quiz 2 will occur online from 5:30 PM, September7 to 5 PM, Septembe
Virginia Tech - ENGE - 1024
Computer Orientation Questions Part 3These questions are available as preparation for some of the quiz 3 content. You can expect thesequestions to be a subset of your quiz 3 questions. Quiz 3 will occur online from 5:30 PM, September14 to 5 PM, Septemb
Virginia Tech - ENGE - 1024
Math Review Sheet ENGE 1024Fall 2011InstructionsThis is to be completed in 30 minutes using a scientific calculator and no reference material.Conversions12 inches = 1 foot3 feet = 1 yard1 acre = 43,560 ft21 meter = 3.281 feet 1 mile = 5,280 feetQ
DePaul - PHYSICS - 101
Boğaziçi University - DEPT - 221
Coordonatorul coleciei: dr. LEONARD GAVRILIU Redactor de carte: MRIA STANCIU Concepia grafic a copertei coleciei: VENI AMIN &amp; VENI AMIN Tehnoredactare computerizat: MARIANA MRZEAMICA BIBLIOTEC DE PSIHOLOGIEJEAN-PIERRE CHARTIERINTRODUCERE N PSIHANALIZA
Waterloo - CS - 246
Welcome to CS 245Instructor: Brad Lushman Web page:http:/www.student.cs.uwaterloo.ca/cs245Read everything on the Web page carefully as soon as possible, especially the academic offenses page. Newsgroup:uw.cs.cs245Read the newsgroup at least daily for
Waterloo - CS - 246
Propositional logicReadings: Sections 1.1 and 1.2 of Huth and Ryan. In this module, we will consider propositional logic, which will look familiar to you from Math 135 and CS 251. The difference here is that we rst dene a formal proof system and practice
Waterloo - CS - 246
The semantics of propositional logicReadings: Sections 1.3 and 1.4 of Huth and Ryan. In this module, we will nail down the formal denition of a logical formula, and describe the semantics of propositional logic, which will be familiar to you from Math 13
Waterloo - CS - 246
Topics in propositional logicReadings: None from the textbook. In this module, we will look at alternate methods of demonstrating the truth or falsity of statements in the propositional calculus, and consider some implications of soundness and completene
Waterloo - CS - 246
Going beyond propositional logicConsider the following statements:p: Ling took CS245 q : Ling passed CS245 r: Ling failed CS245Taken literally, these are all atomic statements, and formally they have no relationship with each other. But we know the fol
Waterloo - CS - 246
The semantics of predicate logicReadings: Section 2.4, 2.5, 2.6. In this module, we will precisely define the semantic interpretation of formulas in our predicate logic. In propositional logic, every formula had a fixed, finite number of models (interpre
Waterloo - CS - 246
FormalizationReadings: None. A book consulted in the preparation of these slides states, &quot;This book, like almost every other modern mathematics book, develops its subject matter assuming a knowledge of elementary set theory. This assumption is often not
Waterloo - CS - 246
Program verificationReadings: Chapter 4. In this module, we define and work with a formal proof system for proving programs correct. The motivation is similar to that of previous modules: a proof can provide confidence of correctness in a situation where
Waterloo - CS - 246
AlloyReadings: Section 2.7. In this module, we look at Alloy, an analyzer that uses a simple structural modelling language based on first-order logic. Alloy is a free download for all major platforms from alloy.mit.edu, and we encourage you to download i
Waterloo - CS - 246
Logic ProgrammingHaving just studied the use of Alloy as a tool for checking specifications of software systems, we turn our attention in this module to a related question: whether, once we have a sufficiently detailed specification for a software system
University of Florida - CHM - 2046
CHM 2046/Myers2010Worksheet 21February 26,1. Working T Shift Effects Which way is Better?Le Chatelier Reasoning(using H only)orUsing G = H - TS(using H and S)It helps to express K in terms of H and S: G = exp RT K = exp H + T S =RTOne
Michigan - CICS - 301
20:03GlobalperspectiveEvolutionofviewsaboutchildrenandadolescents?Notreally,attitudeofchildrenHAVE changed.Adolescentsviewshavenotchanged.Childrenhaverightstoplay,run,allday.BasedonRousseau,enlightenmentFrenchChildsoldiersYouthwhoparticipateinArmedc
Michigan - CICS - 301
intro18:52TangiblethreatstopeopleStateswarRevolutionGreatestthreat:smallpoxvirusof20thcenturymorehumanskilledthangovernmentsPersonaldefinitionofhumansecurityMultimedia:withdefinitionconveyitgraphicallyMidtermFirstdaytestSeconddaygradetestandtak
Michigan - CICS - 301
Mid term ReviewHuman security1) State Security:a) threats from neighbors, leaders are direct relation to countries stability, wareffects humans health, population, stress, mental health,b) Internal Threats: state failure effects human life, and insta
Michigan - CICS - 301
readingday1HumanSecurity03:01AnnantwoconceptsofsovereigntyStatesovereignty:becauseofglobalizationandinternationalcooperation,statesare instrumentsofpeople.Individualsovereigntyfreedomofpeople,enhanced.Howunrespondstohumanitariancrises;realcommitmentt
Michigan - CICS - 301
readings16:55KaufmanmodernhatredExplainhowandwhyethniccleansinghappen,ancientrivalrys,manipulativeleaders, economicrivalryMistakesimportantbecauseleadtomistakenpolicyactionsAssumptionsAncienthatred:necessarytounderstandethniccleaning,massmurders.Pa
Michigan - ENVIRON - 367
ENVIRON 367 Global Enterprise and Sustainable Development Fall 2011Homework #1 Due 9/281. Choose a country other than the U.S. which you are interested in. A list of countries is available from theInternational Monetary Fund (IMF)s World Economic Outlo
Michigan - ENVIRON - 367
ENVIRON 367 Global Enterprise and Sustainable Development Fall 2011Homework #3 Due 10/12The &quot;Standard Models&quot; at EIOLCA.net (http:/www.eiolca.net/cgi-bin/dft/use.pl) can only give you life cycle economic and environmental of products in one single secto
Michigan - ENVIRON - 367
Alyssa MarcucciHW #2Section C4. Using a figure explain LCA (1/2 page)Phase 1: Definition of goal and scope. This is the first step where the goal and scope of the LCAis clearly laid out so it is understand whom and for what purpose the LCA is used. T
Michigan - ENVIRON - 367
internationaltradeandtheworldeconomic20:14Gdp:27countriesincreasedsince2004,in2009.HighestAfghanistanTradeintheworldeconomyTradegrowsfasterthanGDPUsexportstochina=usgdpbecausemanufacturedinusCountriesareconnectedwitheachotherbyinternationaltrade,Ger
Michigan - ENVIRON - 367
Environmentalconsequenceofinternationaltrade20:15ElectronicwasteUnderstandrelationshipbetweenenvironmentalimpactsandeconomicactivatesUnderstandenvironmentalimpactsofinternationaltradefordevelopingcountriesEnvironmentalImpact=Population(#ofpeople)xAf
Michigan - ENVIRON - 367
LifeCycleAnalysis20:15Lifecyclethinking:Greenpeaceprotest.2009,theprotesterneededaposterneededcardboard,paint,transportationfuel,electricityconsumptionFromlifecycleperspectivethosehavegenerates,co2,energy,fuel,airpollution.He generatedandcontributed
Michigan - ENVIRON - 367
EnergyandChina20:15LearningObjectives:EnergychallengesTechnologyoptions:renewableenergies,solarenergies,biofuelsEnergypolicies:differentcountriespolicyissues,USascomparisonChinaEnergy:anessentialforeconomicandsocialdevelopmentpopulationgrowthgrowi
Michigan - ENVIRON - 367
CleanEngeryChinaChina:reduceco2emissionsperGDPby40%45'y2010basedby2005levelManufacturingiscritical.Themanugacturingsectorrepresents68%ofallprimary energyconsumptioninChinaThereisstronggrowthinmanufacturingprimaryenergyuseChinaistheworldslargestproduc
Michigan - ENVIRON - 367
Transportation20:17People,things,productsMobility:basichuman/economicneedTransportationandsustainability:energyconsumption,airpollution,GHGemissions, socialequity,economicdevelopment.Worldtransportationenergyuse:roadismostusedmodePercapita:OECD:gas
Michigan - ENVIRON - 367
SolutionstoTransport20:17Electricvehicles.BikesPublictransportationAllrelatedtolanduse.Energyuse.SubwaylightrailinChinesemegacities:ShanghaiandBeijing:populationsamebutlandarealessthanhalfinShanghaithan Beijing,buttransportationinbetterinShanghai
Michigan - ENVIRON - 367
lectures12:46Evolutionofenvironmentalissues1.1970sEndofpipetreatmentlimitedaccountability,relianceonabatement2.pollutionprevention(reduce,reuse,recycle)3.designforenvironment(extensionofnumber2;lifecycleassessment,lookatentire lifecycleofproducttora
Michigan - ENVIRON - 367
UrbanizationandtheEnvironment20:17oururbanizingworld:environmentalimpactsofcities:airpollution,dieselgloal=greenhousegaseslocalscale:normally,diesel,disposalofwaste,urbanrunofftakeon3%ofearthssurface.urbanmetabolism:industrialecology,linearmetabolis
Michigan - ENVIRON - 367
HDI:humandevelopmentIndex:bestknowncompositeindexofsocialand economicwellbeingAlongandhealthlife:HealthMeasuredbylifeexpectancyatbirthKnowledge:EducationMeasuredasacombinationofadultliteracy(meanofyearsofschoolingaged25 years)andgrossenrollmentAdec
Michigan - ENVIRON - 367
readingday102:3809/12Rockstorm:AsafeoperatingspaceforhumanityStableenvironmentfor10,000years=holoceneAnthropocene:newearafterindustrialrevolution,humanactionshavedrivenglobal environmentalchangeRelianceonfossilfuelsandindustrializedformsofagricultu
Michigan - ENVIRON - 367
People: diversity in employees, safety and health of employment, loyalty of employees.Customers: transparency increase, Toyota customer assistance center, stakeholderdialogue.Quality: basic concepts, commitments to gain customers trust.Safety of cars:
Michigan - ENVIRON - 367
Waste ManagementBrazils population has a stable growth rate, which is at 1% in 2009, unlike China orIndia, which experiencing a rapid urban growth. With steady growth rate, Brazils wastemanagement challenges focus on financing and government funding. E
Michigan - AAPTIS - 491
Alyssa MarcucciResponse 1:AAPTIS 491September 14, 2011In class we discussed the common perception of Islam and especially Muhammad from aMedieval European viewpoint. From this conception, Islam was seen as an extension ofChristianity and Muhammad was
Michigan - AAPTIS - 491
In the beginning of the play, Iago is seen as the one who manipulates Othellos trust forDesdemona into doubt and jealousy. However, by the end of the third and fourth act, is itis questionable if Iago is truly the maneuverer or if Othello is in command
Michigan - AAPTIS - 491
Race has been debated in our discussions as a way to symbolize evil or instead using theadjective black or dark as a symbol for evil. In Othello, the color black was used attimes to link Othello to acts of revenge and hate because of skin, but at the sa
Michigan - AAPTIS - 491
The friendship between Aziz and Fielding shows the tension between the East and theWest. In the beginning of the film Aziz has no relationships with the English, andmentions that English women are much worse then English men. However, he still rides ab
Michigan - AAPTIS - 491
In Saids book Orientalism, the East is excluded from the book and not given a voice.Instead, Said talks for the East and how the Occident misrepresents them, but the East isnever within the novel. In fact, the book is more about the identity of the West
Michigan - AAPTIS - 491
The new reality show on TLC, All-American Muslims, shows a single viewpoint ofIslam. In class we have discussed the plurality of Islam that spreads across ideologies,practices, customs, and cultures. The reality show however, is in the singular where al
Michigan - AAPTIS - 491
Diving comedy: dante Alighieri: 14th century. Born 1265, after crusadesOthello: Shakespeare: 3 centuries after Dante: 17th century. 1604. 1490s Spanishinquistion. Set in 16th century, before ottoman conquest of Cyprus in 1573. Laterenaissance. Shakespe
Michigan - AAPTIS - 491
Othello: trying to hide or fit in by being with desdomona and overly saying how much heis happy with her even during war. He is so happy with her and repeatily states it. ProvehimselfAct 11, Turkish threat disappeared, personal threat immergesGreek tr
Michigan - AAPTIS - 491
lecture9/1214:12IslaminthewestEurope:1442islamandjewsexpelledfromSpainandPortugalEarlymodernEurope:renaissance(14th16thcenturyfollowstheChristianMiddleAges)Dante:14thcentury,wroteinexileinItalianvernacular,stepsawayfromhighliteraturein languageofchu
University of Florida - PHY - 2048
7777777777PHYSICS DEPARTMENTPHY 2048Final ExamName (print):10:00 am, December 11, 2010Signature:On my honor, I have neither given nor received unauthorized aid on this examination.YOUR TEST NUMBER IS THE 5-DIGIT NUMBER AT THE TOP OF EACH PAGE.(1
University of Florida - PHY - 2048
PHY2048 Spring 2010December 22, 2009PHY2048 Overall Course GradeYour overall course score (in %) is evaluated from the following four terms:Overall Course Score = Exams + Quiz + Homework + HITTExams: Your overall exam score is given by( Ex1 + Ex 2 +
University of Florida - PHY - 2048
PHY2048 Fall 2009August 1, 2009PHY2048 Overall Course GradeYour overall course score (in %) is evaluated from the following four terms:Overall Course Score = Exams + Quiz + Homework + HITTExams: Your overall exam score is given by ( Ex1 + Ex 2 + Ex3
University of Florida - PHY - 2048
PHY2048 Fall 2010August 2010PHY2048 Overall Course GradeYour overall course score (in %) is evaluated from the following four terms:Overall Course Score = Exams + Quiz + Homework + HITTExams: Your overall exam score is given by( Ex1 Ex 2 Ex3 Ex 4)E
University of Florida - PHY - 2048
PHY2048 Overall Course GradeYour overall course score (in %) is evaluated from the following four terms:Overall Course Score = Exams + Quiz + Homework + HITTExams: Your overall exam score is given by(Ex1 + Ex2 + Ex3 + Ex4) (60%).60Ex1, Ex2, and Ex3
University of Florida - PHY - 2048
PHY2048 Fall 2010August 2010PHY2048 Overall Course GradeYour overall course score (in %) is evaluated from the following four terms:Overall Course Score = Exams + Quiz + Homework + HITTExams: Your overall exam score is given by( Ex1 Ex 2 Ex3 Ex 4)E
University of Florida - PHY - 2048
Explanation of mid-term grade estimate.The scores are posted for 2 tests, each out of 20 points. As tests constitute60% of the grade, the scores are multiplied by 1.5 to give estimate of testcontribution.The first 17 H-ITT questions have been added up
University of Florida - PHY - 2048
In the e-learning gradebook, there are now many items. These are designed to give you a projected grade nowthat around half the scores have been accumulated.Exam 1, scored out of 20, is obvious. Do not worry if the score appears in parentheses that mean
University of Florida - PHY - 2048
PHY 2048 Spring 2010InstructorAllMatchevaMatchevaMatchevaMatchevaNo ClassMatchevaSabinSabinSabinSabinSabinSabinSabinSabinMatchevaMatchevaMatchevaSabinSabinSabinMatchevaMatchevaMatchevaMatchevaMatchevaMatchevaDepartment of Phys
University of Florida - PHY - 2048
PHY 2048 Fall 2010Date23-Aug-1025-Aug-1027-Aug-1027-Aug-1030-Aug-101-Sep-103-Sep-103-Sep-106-Sep-108-Sep-1010-Sep-1010-Sep-1013-Sep-1015-Sep-1017-Sep-1017-Sep-1020-Sep-1022-Sep-1024-Sep-1024-Sep-1026-Sep-1027-Sep-1028-Sep-1029-Sep
University of Florida - PHY - 2048
PHY 2048 Fall 2010Intro1.1-2.42.5-2.103.1-3.53.6-3.84.1-4.44.5-4.95.1-5.65.7-5.96.1-6.36.4-6.57.1-7.47.5-7.77.8-7.98.1-8.38.4-8.68.7-8.89.1-9.59.6-9.89.9-9.1210.1-10.410.5-10.710.8-10.1011.1-11.411.5-11.811.9-11.1212.1-12.3Date