24 Pages

ch-8-CSS

Course: CH 110, Fall 2009
School: Oregon
Rating:
 
 
 
 
 

Word Count: 834

Document Preview

CSS chapter 4 A Primer html: structure & content CSS: presentation & style Deprecated elements Once deprecated, tags may well become obsolete <font></font> <b></b> <i></i> <u></u> <strike></strike> <center></center> Slide 4-2...

Register Now

Unformatted Document Excerpt

Coursehero >> Oregon >> Oregon >> CH 110

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.
CSS chapter 4 A Primer html: structure & content CSS: presentation & style Deprecated elements Once deprecated, tags may well become obsolete <font></font> <b></b> <i></i> <u></u> <strike></strike> <center></center> Slide 4-2 CSS terms style rule selector {property:value} examples h2 {color: red} h3 {color: #FF0000; text-align:center} p {color: navy; font-style:italic} h1,h2,h3,h4,h5,h6{color:green} Misc Resources folder/ 110 web resources/css Slide 4-3 Styles are stored in Style Sheets external: separate file internal: <style> element in head section inline/local: style property in tag Slide 4-4 internal style sheet <head> <styletype="text/css"> body{background-color:ivory;color:navy} hr{color:sienna} p{font-family:Verdana} </style> </head> Slide 4-5 Inline styles (a.k.a. local styles) <h2style=color:red>LocalStyles</h2> <pstyle="color:sienna;text-align:center"> x-rayyankeezulu </p> Slide 4-6 External Style Sheet > Stylerulesstoredinseparatefile (eg)/110/css/110.css > Connectedtoaclientfileusingalink element Slide 4-7 External Style Sheet: /110/css/110.css externalstylesheetsmaycontainonly > cssstylerules > csscomments(fordocumentation) > noHTMLallowed omit<style>element hr{color:sienna} p{color:sienna;text-align:center} body{background-image: url(../images/back40.gif")} Slide 4-8 Client File /110/about/contact.html clients connect to the style sheet using the <link> tag. The <link> tag goes inside the head section: <head> <link rel="stylesheet" type="text/css" href=../css/110.css" /> </head> Slide 4-9 External Style Sheets CSS is a breakthrough in Web design: separates structure (html) from presentation (css) control the style of multiple Web pages all at once Define styles in an external style sheet and apply them to as many Web pages as you want To make a global change, simply change the style: all elements in the site are updated automatically Slide 4-10 Cascading Style Sheets Multiple Styles Cascade Into One Styles can be specified o o o inline local external Even multiple external style sheets can be referenced inside a single HTML document Slide 4-11 Cascading Order What style will be used when there is more than one style specified for an HTML element? Styles will "cascade" by the following rules (number 1 has the highest priority): 4. 5. 6. 7. Inline style Internal style sheet (<style> element in the <head>) External style sheet Browser default So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style declared inside the tag, <head> in an external style sheet, or in a browser (a default value). Slide 4-12 selectors: 1. simple.2.class.3.id 1.simple: p{font-family:Verdana} 2.class:p.right{text-align:right} .center{text-align:center} <pclass="right">Thisparagraphwillbe right-aligned.</p> <pclass="center">Thisparagraphwillbe center-aligned.</p> <h2class=center>ZutAlors!</h2> Slide 4-13 Selectors (cont.) 3. id selector: h2#kermit{color:green} #alert{color:red} <h2 id=kermit> Bein Green! </h2> <p id=alert> Caveat Lector! </p> Slide 4-14 Descendant selectors Problem: specify a CSS rule that applies to EM elements that are contained by an H1 element" Example: h1 { color: red } em { color: red } Slide 4-15 4. Descendant selectors h1 { color: red } em { color: red } Although the intention of these rules is to add emphasis to text by changing its color, the effect will be lost in a case such as: <h1>This headline is <EM>very</EM> important</h1> Slide 4-16 4. Descendant selectors Add a rule that sets the text color to blue whenever an em occurs anywhere within an h1 h1 { color: red } em { color: red } h1 em { color: blue } Slide 4-17 Descendant selectors Problem: specify a CSS rule that applies to EM elements that are contained by an H1 element" Example: h1 { color: red } em { color: red } Slide 4-18 Classification of Elements: Block-level, Inline, List-item Block-Level Elements: Displayed on a line by itself p, h1, div, table, ol, ul, . . . Can only be contained by other block-level elements (with restrictions): p can be in a div p can not be in a p Slide 4-...

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:

Oregon - CIS - 111
The YouCube web page from Chapter 9 is continued here, and is built incrementally throughout the chapter. Each numbered HTML file corresponds to an incremental version of the web page. When a page number appears beside a file, it is either the page w
Penn State - JAL - 5080
JoelleLavin Kines469WPhilosophy Ibelievethatthemainpurposeofphysicaleducationistogetstudentsto becomeandremainphysicallyactiveandhealthyforalifetime.Asphysicaleducation teachers,ourmainpurposeistointroducechildrentoactivitiesthattheywillenjoyand that
Stanford - ED - 225
Art SmartA conceptual captology design by Kara Blond and Josie ChouDesign ChallengeTo design a mobile phone application that attempts to motivate or influence users. Time limit: 10 hoursStanford University, Spring 2002 Ed 225xs Persuasive Techn
CSU San Marcos - CS - 539
CS 539 Client Server Computing : Class ProjectOverview The objective of the class project is to bring new information about Client Server technologies and their development to the class. An additional objective is to test your ability to research a
CSU San Marcos - CS - 539
CSU San Marcos - CS - 539
Lab Concurrent ServersConcurrent, ConnectionOriented ServersCS539 Client/Server Computing1Introduction Iterative Vs Concurrent Servers Process Structure Concurrent ECHO Server System Call Fork( ) Using Threads for Concurrency Pthreads
CSU San Marcos - CS - 539
CSU San Marcos - CS - 539
Lab MultiProtocol/MultiService ServersMultiProtocol/MultiService ServersCS539 Client/Server Computing1Reducing Number of ServersTypically a given server handles requests through one transport protocol Main advantage is control Main disa
CSU San Marcos - CS - 539
Lecture 11External Data Representation (XDR)CS539 Client/Server Computing1Overview Data Representation N-Squared Conversion Problem Network Standard Byte Order De Facto XDR Standard XDR Data Types XDR Library Routines Building XDR Me
CSU San Marcos - CS - 539
Lecture 13Distributed Program Generation (RPCGEN)CS597 Real-Time Systems1Overview Introduction Using Remote Procedure Calls Programming Mechanisms to Support RPC Local/Remote Procedures Stub Procedures Multiple Remote Procedures
CSU San Marcos - CS - 539
Lecture 12Remote Procedure Call Concept (RPC)CS597 Real-Time Systems1Overview Introduction RPC Model Paradigm for Distributed Programs Conventional Procedure Call Model Client/Server and RPC Sun Microsystems' RPC Definition Remot
CSU San Marcos - CS - 539
How RPC WorksUpdated:March28,2003HowRPCWorksInthissection RPCArchitecture RPCProcessesandInteractions NetworkPortsUsedbyRPC MicrosoftRemoteProcedureCall(RPC)isaninterprocesscommunication(IPC)mechanismthatenablesdataexchangeand invocat
CSU San Marcos - CS - 539
Lab RPCDistributed Program Generation (RPCGEN Example)CS539 Client/Server Computing1Ilustrated Rpcgen ExampleDictionary Operations Simple database implementation Four basic operations Initialize initialize the database Insert ins
CSU San Marcos - CS - 539
Lecture 14Common Object Request Broker Architecture (CORBA)CS539 Client/Server Computing1Overview Introduction Distributed Applications CORBA Architecture OMG Reference Model CORBA ORB Architecture Standard for Distributed Objects C
CSU San Marcos - CS - 539
Interface Definition LanguagePlanning and PreparationWhat is an interface?The interface is arguably the most important aspect of component development. The interface determines the strict form of all remote requests and responses. It can be very
CSU San Marcos - CS - 539
Lab CORBACORBA OverviewCS539 Client/Server Computing1Introduction CORBA addresses two challenges of developing distributed systems: Making distributed application development no more difficult than developing centralized programsEasier
CSU San Marcos - CS - 539
Lab CORBACORBA Getting StartedCS539 Client/Server Computing1Introduction This introduction guides you through the process of building and running a simple client/server application using TAO. New to CORBA, you may find it helpful to read
CSU San Marcos - CS - 539
CSU San Marcos - CS - 539
University of Texas - CS - 395
%!PS-Adobe-2.0 %Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %Title: notes.dvi %CreationDate: Thu Jan 30 17:13:37 1997 %Pages: 3 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSPa
University of Texas - CS - 367
%!PS-Adobe-2.0 /PNshowpage /showpage load def /showpage { } def %Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %Title: notes.dvi %CreationDate: Thu Sep 12 13:46:39 1996 %Pages: 9 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndCommen
University of Texas - CS - 367
%!PS-Adobe-2.0 %Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %Title: notes.dvi %CreationDate: Thu Sep 12 13:46:39 1996 %Pages: 9 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSPa
University of Texas - CS - 378
IsF 4 u t |j SbrGTR RC V s R w CT R9H VG9uEdDdDXcsFqiRF rHdC DdC s h G9Q)grT D)C DGTvDIHS DIPiHUV&amp;IHF w wH E 9H VaC wH HV R Vt F F F A R # csF s Dds h V a C r r wHC 2 A E U9E ~ xgDT &quot; D)C ~ x B wH q
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: Answers.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f Answers.dvi -t letter %
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: GEMM.dvi %Pages: 11 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f GEMM.dvi -t letter %DVIPS
University of Texas - CS - 378
j v m ut s r g p p o m g l j l g i j i g f e d y UTU%TT'Vqddn%Ts'V&quot;kTqh4Th dfT7 4d&quot;4dTT %uT4&quot;T433x G H v 'G &quot;w 'u ' G G G G G i q pA G i G G H t I G G i sA ' 'u '9A G sA 'ri dp &quot;`a ` c dG8 b@ 7
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: Recipe.dvi %Pages: 25 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f Recipe.dvi -t letter %D
University of Texas - CS - 378
466BX6066 hT v6)0 RD6 phT$676s6 T$ADphRx 666| RjRs T$Ap6hppe) h6)vp T4$v`a6n|p6B26$jp j| Qsv~js6p0 n6x sDRB4pQX66sY vX~Q
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: TRSV.dvi %Pages: 8 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f TRSV.dvi -t letter %DVIPSP
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: fire.dvi %Pages: 38 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f fire.dvi -t letter %DVIPS
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: notes.dvi %Pages: 9 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86d Copyright 1999 Radical Eye Software %Title: final.dvi %Pages: 9 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f final.dvi %DVIPSParamete
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: qralg.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f qralg.dvi %DVIPSParameter
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: pivoting.dvi %Pages: 4 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f pivoting.dvi %DVIPSPar
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: slides.dvi %Pages: 55 %PageOrder: Ascend %Orientation: Landscape %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: assignment.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi -t le
University of Texas - CS - 395
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: assignment.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi %DVIP
University of Texas - CS - 395
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: assignment.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi %DVIP
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: assignment.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi %DVIP
University of Texas - CS - 383
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: assignment.dvi %Pages: 5 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi %DVIP
University of Texas - CS - 395
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: notes.dvi %Pages: 25 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSParameters: dpi=600 %
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: notes.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSParameters: dpi=600 %D
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: notes.dvi %Pages: 7 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSParameters: dpi=600 %D
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: notes.dvi %Pages: 7 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSParameters: dpi=600 %D
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: assignment.dvi %Pages: 30 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f assignment.dvi %DVIPSParameters:
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.66a Copyright 1986-97 Radical Eye Software (www.radicaleye.com) %Title: assignment.dvi %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f assignment.dvi %DVIPSParameters:
University of Texas - CS - 378
% &amp; x 0C S b 7 S t 5 w C T6E6d46T8YEEri S F ` 2 A 3 2 9 5 w F 7 t 5 3 2 5 wC 7 R b 5 P ` 5 3 2 2 A 3 2 F b b 3 t A 7 x A 7 A t i 5H 2b 7 X 5 3 2 x 0 e'pYd@E6edTU6d$YE44Q@648pT4avT6D'4'T@cTy64a6EC u x 0 A 3 R 27 A 2 &amp; b 5 9 A 0 7 S F ` F 2 b 7 F 3 2
Ill. Chicago - BSTT - 401
Ch 8 Multiple Regression Analysis: General considerationexample . t x t WGT 64 71 53 67 55 58 77 57 56 51 76 68 HGT 57 59 49 62 51 50 55 48 42 42 61 57 (Tab le 8- 1) AGE 8 10 6 11 8 7 10 9 10 6 12 9 AGE2 64 100 36 121 64 49 100 81 100 36 144 81As
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.92a Copyright 2002 Radical Eye Software %Title: assignment.dvi %Pages: 4 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -f assignment.dvi -t l
University of Texas - CS - 367
%!PS-Adobe-2.0 %Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %Title: exam1.dvi %CreationDate: Tue Oct 15 13:09:52 1996 %Pages: 2 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f exam1.dvi %DVIPSPa
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86e Copyright 2001 Radical Eye Software %Title: assignment.dvi %Pages: 3 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -D 600 -o -Z assignmen
University of Texas - CS - 378
RqRXe lxc{0XluX}8l}z Ez&quot;9wuwYqom lj y z x y z~ y ~ m | y x v m s p r s r p n k f h @9e 90YB@T`6 YiR lxc{04WlWX}(8}z ETz&quot;4wuuxqom yz y z~ y ~ m | y x v m s p p n k R @e XxYiR {xc{}wXR{WlWX}(8}z ETz&quot;4wu
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: sample.dvi %Pages: 11 %PageOrder: Ascend %BoundingBox: 0 0 612 792
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: sample.dvi %Pages: 10 %PageOrder: Ascend %BoundingBox: 0 0 612 792
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: sample.dvi %Pages: 9 %PageOrder: Ascend %BoundingBox: 0 0 612 792
University of Texas - CS - 378
q S X # X X sj%nol| yh o linu k q jo plso {s f p kfo k X ) z# ) u nwdededptgf~ gfe doqpys kmr o S k jejenp z y}VezzypHqG q j
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: sample.dvi %Pages: 17 %PageOrder: Ascend %BoundingBox: 0 0 612 792
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvipsk 5.86 p1.5d Copyright 1996-2001 ASCII Corp.(www-ptex@ascii.co.jp) %based on dvipsk 5.86 Copyright 1999 Radical Eye Software (www.radicaleye.com) %Title: sample.dvi %Pages: 10 %PageOrder: Ascend %BoundingBox: 0 0 612 792
University of Texas - CS - 378
iryluwfk d fhXl h o f o 2 w x wuzdhXueheq fhXl j } f q q {zuggfwhy 6kskcxyS6shV t2 2r {ydXz e6VyiyzewdpxdvXgh v f f r ghdpk whu | } r f X u h u o v Xz
University of Texas - CS - 378
%!PS-Adobe-2.0 %Creator: dvips 5.58 Copyright 1986, 1994 Radical Eye Software %Title: notes.dvi %CreationDate: Wed Jan 22 15:15:54 1997 %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndComments %DVIPSCommandLine: dvips -f notes.dvi %DVIPSPa
University of Texas - CS - 378
%!PS-Adobe-2.0 /PNshowpage /showpage load def /showpage { } def %Creator: dvips 5.58 Copyright 1986, 1994 Radical Eye Software %Title: notes.dvi %CreationDate: Wed Jan 22 15:15:54 1997 %Pages: 6 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %EndCommen