Web Page Programming Assignments

Animation Time

Click on the link below to get started with animation using Adobe Photoshop.

http://www.photochopz.com/forum/member-photoshop-tutorials/30199-animation-basics.html

Here is a link to learn more about animation using Photoshop to make a cool name banner.
http://www.tutorialized.com/view/tutorial/Photoshop-Open-Page-Animation/38013
Here is a Word Document Version that may be more helpful. Photoshop Animation

A way cool tutorial on using smart objects. Sort of like styles but on objects.
http://www.tutorialized.com/view/tutorial/Animated-Interface/37890

 

Peiod 4 Assignment January 16.
Go to http://www.w3schools.com/html/html_intro.asp
Follow the tutorial to learn HTML
You need to know how to do the following: Header, Link, Insert Image, Body, line Break, Bold, and how to use style to change the background color of the page, and change the color of text using style.
Use Notepad to code your HTML.
Save it to your documents as "exercise1.html" and then open it using a web browser such as Internet Explorer or Firefox to see your work.
As you save in notepad, refresh your browser to see the changes.

Email Mr. Brown your finished HTML page.

Period 1 and Period 2 Assignments

January 8 and 9 - Learn form valadation. Let Mr. Brown know if you want to print.

Easy - http://www.lib.umich.edu/hsl/resources/guides/DreamweaverForms.pdf

Advanced - http://www.creativepro.com/article/view-source-building-better-forms-dreamweaver-cs3

 

How to send a form using email

Enter the following code in the actions "http://www.hjwebs.com/HandlerEmail.asp"

You need to put the following form fields in your form. Check your code for the following"

<form method="POST" action="HandlerEmail.asp">
To <input type="text" name="To" value="email address here" /> Note- If you use a text field in your form to collect this information you don't put a value in this code.
From <input type="text" name="From" value="your name here" />
Subject <input type="text" name="Subject" "subject here" />
Body <textarea name="Body" rows="5" cols="20" wrap="physical">
</textarea>
<input type="submit" />
</form>

 

 

This is the code that I put in the email handler or HandlerEmail.asp page. This code uses the information from above to process the email. I already saved and uploaded this file.

<%
'This asp code sends an email using POST
Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = Request.Form("To")
mail.From = Request.Form("From")
mail.Subject = Request.Form("Subject")
mail.TextBody = Request.Form("TextBody")
mail.Send()
Response.Write("Mail Sent!")
'Destroy the mail object!
Set mail = nothing
%>