Photoshop In Depth II continued
Sample Images for Demo
- Woman's Face (healing brush)
- Cuzco (patch brush)
- Iranian Missles (clone stamp)
Filters Continued
Others:Offset- Remember that you can limit the effect with a selection
Edit:Transform

- Scale, Rotate, Flip
- Skew, Perspective, Distort, Perspective
- Warp
Edit: Fade Last Process
Wow, Cool!
Image: Adjustments

- Levels
- Hue/Saturation
- Curves
Workflow

- History palette
- Snapshot
- Options
- Linear vs. non-linear history
- Trash can icon deletes individual action in non-linear history

- Actions
- Default actions
- Build your own
A Brief History of the Internet
Early History
Excellent History of the Internet site
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The Web Comes of Age
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
A more complete timeline here
Basic HTML 1
Web Servers & How They Work

Partial map of the Internet based on the January 15, 2005 data found on opte.org. Each line is drawn between two nodes, representing two IP addresses. The length of the lines are indicative of the delay between those two nodes. This graph represents less than 30% of the Class C networks reachable by the data collection program in early 2005. Lines are color-coded according to their corresponding RFC 1918.
- The web server lives somewhere out there, and is connected to the Internet. So is your computer, or client.
- The server has a domain name, like www.khazar.com
- It also has an IP address, like 66.117.153.28
- Computers can only talk to each other through the IP address, but a Domain Name Server (DNS) that lives on the web intervenes and directs the inquiry to the right server.
The Universal Resource Identifier
(URI)
http://www.khazar.com/academics/portal/ucsc/2010winter/art21/class07.php
http
tells the browser to use HyperText Transfer Protocol when accessing the internet
://
tells the browser that what comes after it is the server location information
www.khazar.com
is the domain name. The location of the server that holds the domain’s web files is kept by a Domain Name Server (DNS).
academics/portal/ucsc/2010winter/art21/
is the path on www.khazar.com’s web server that holds the HTML file
class06.php
is the name of the HTML file that has the web page your looking at right now
Alphabet Soup
- HTML: HyperText Markup Language
- XHTML: eXtensible HyperText Markup Language
- FTP: File Transfer Protocol
- SFTP: Secure File Transfer Protocol
- XML: eXtensible Markup Language
- But wait, there's more!
- CGI, PHP, CSS, DHTML, POP3, SHTML, ASP, SMTP…
HTML & XHTML
What are HTML & XHTML?
- Languages used to tell web browsers how to render a web page
It looks like this in the raw:
<html> <body> <h1>Hello World!</h1> </body> </html>
And like this when a browser renders it:
Tags
Structural Tags
<html> <body> <h1>Hello World!</h1> </body> </html>
What tags can control
- Comments
- The color, font face, weight, size and style of text
- Tables
- Divisions
- Lines
- Images
- Links
- Forms
- Complex interactions
<!- This is a comment -l>
<h1>Hello World!</h1> <font color="black" face="sans-serif" size="+1"><b><i>Hello World!</i></b></font>
<table width="100%" border="1">
<tr>
<td>
<p>Hello</p>
</td>
<td>
<p>World!</p>
</td>
</tr>
</table>
<div> <h2>Hello World!</h2> </div>
<hr />
<img src="images/icon.gif" />
<p>Class 6 is <a href="class06.php"> here</a></p>
<form name="form1" method="post" action="">
<input type="text" name="textfield">
</form>
<a href="#"
onMouseOut="doButton('Norm','home','home');"
onMouseOver="doButton('Over',hello,hello)"
onMouseUp="doButton('Norm',hello,hello)"
onMouseDown="doButton('Down',hello,hello)">
<img name="hello" src="images/home.gif"
width="137" height="23" border="0"
alt="">
</a>


