Change your page title, your Author name, and your page heading to something appropriate
Change: pput-your-email-address-here to your email address
Change: put-your-email-address-here to your email address.
Change: put-your-subject-here to your subject line.
Change: put-your-form-page-url-here to the URL of your formpage.
Change the put-legend-here and both put-label-here to something appropriate. For example, Demographic Information, First Name, Last Name
Copy the Form Page Styles (CSS) code (below)
Paste that code into your styles.css file.
Change some styles.
In your index.html file
Add a link to this page.
Change: <li>Create a Form Page</li>
to: <li><a href="form.html">Create a Form Page</a></li>
Click: Save
Name the file: form.html
Change the Save as type:
to: Hyper Text Markup Language file (*.html)
Click: Run
Choose: Launch in IE
or Launch in Chrome
or Launch in Firefox
View your web page
Make any changes
Save your changes
Form Page Template (HTML)
<!doctype html>
<html>
<head>
<title>page title goes here</title>
<!-- Author: put your name in this comment line -->
<link href="includes/styles.css"rel="stylesheet"/>
</head>
<body>
<h2>My Form Page</h2>
<form id="myForm"name="myForm"method="POST"action="https://jimgerland.com/jimMailer.php">
<input id="to"name="to"type="hidden"value="put-your-email-address-here">
<input id="subject"name="to"type="hidden"value="put-your-subject-here">
<input id="source-url"name="to"type="hidden"value="put-your-form-page-url-here">
<fieldset>
<legend>put-legend-here</legend>
<label for="firstName">put-label-here:</label>
<input type="text"id="firstName"name="firstName"size="25"/><br/>
<label for="lastame">put-label-here:</label>
<input type="text"id="lastame"name="lastame"size="25"/><br/>
<input type="submit"id="submit"name="submit"value="OK Send My Data"/>
</fieldset>
</form>
<p>This page was last modified on:
<script>document.write(document.lastModified);</script>.</p>
</body>
</html>