Editing Text in dreamweaver

This video shows you how to edit text in dreamweaver and how to use the internal CSS to change the size/color

[youtube=http://www.youtube.com/watch?v=13n7vuenqno]

Beginning Dreamweaver

This tutorial walks through the initial stages of opening up dreamweaver

[youtube=http://www.youtube.com/watch?v=aLVL9mX7XVk]

php: Contact Page

for those of you interested in creating a contact page with a form (fields and submit button) that goes directly to your email, check this out. You simply need to copy and paste this code into the body of your html. You also need to put your email address in the part that says ‘YourEmailAddressHere’ and need to save the page as something like: contact.php, not something like contact.html. And thats it. Very easy to do.

<form name=”form1″ id=”form1″ method=”post” action=”<?=$PHP_SELF?>”>
<p>Name:
<input type=”text” name=”name” />
</p>
<p>&nbsp;</p>
<p>Email:
<input type=”text” name=”email” />
</p>
<p>&nbsp;</p>
<p>Subject:
<input type=”text” name=”subject” />
</p>
<p>&nbsp;</p>
<p>Message:
<textarea name=”comments” cols=”40″></textarea>
</p>
<p>&nbsp;</p>
<p>
<input name=”submitentry” type=”submit” value=”SUBMIT” />
<input type=”reset” name=”Submit2″ value=”Reset” />
</p>
</form>
<p>
<?php
if ($submitentry == “SUBMIT”){
$sql = “‘$name’, ‘$email’, ‘$comments'”;
$em = “‘$subject'”;
mail(‘YourEmailAddressHere’, $em, $sql);
echo(“<p>Your message has been sent!” . “</p>”);
}
?></p>

Creating a 3 column CSS page with rollover links

These two files are examples of creating a 3 column CSS page. Please open these up in dreamweaver to see the code and how they function. Anyone can use these to begin creating their website and learn to get rid of tables. Remember that tables are only to be used for displaying graphical data, not for website design. div tags in CSS are to be used for website design.

HTML Page using CSS

CSS Page

Site Validation

This video shows you how to use the validation tool we went over in class:

[youtube=http://www.youtube.com/watch?v=9BDggjUvIdc]

PHP Form

This video shows you how to use the php form i sent out in class:

[youtube=http://www.youtube.com/watch?v=VwwWzT6sxuU]

Metadata

This video shows you how to put metadata in your webpages:

[youtube=http://www.youtube.com/watch?v=wBm354au7KE]