Archive for the ‘Adobe Dreamweaver’ Category

How to FTP

Thursday, September 1st, 2011

Adding a Background image in dreamweaver

Thursday, August 5th, 2010

This video shows you how to add a background image in dreamweaver:

Editing Text in dreamweaver

Friday, May 21st, 2010

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

Saving files in Dreamweaver

Friday, May 21st, 2010

This video shows you how to save files in dreamweaver

Beginning Dreamweaver

Friday, May 21st, 2010

This tutorial walks through the initial stages of opening up dreamweaver

php: Contact Page

Wednesday, April 21st, 2010

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

Saturday, April 17th, 2010

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

Monday, February 15th, 2010

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

PHP Form

Monday, February 15th, 2010

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

Metadata

Monday, February 15th, 2010

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