Assignment 17 - Forms, Part 2
Add some more questions to your survey.html document, including text boxes, areas and drop-down menus.
Create a new page called thanks.html, which will tell your readers that you got their submission, and you'll get back to them as soon as possible. Or, if there is no reason to get back to them, you can tell them thanks for the information.
This page can also go through your first.css style sheet, so that you can include that navigation bar and provide links to any of the pages in your website. Or, you can create your own navigation system.
You can look at this thanks.html page. Be sure to view the source code, and copy and paste as much as you can. Just remember to change all the pertinent information to fit your own site.
<body>
<p align="center"><h1>Submission Received</h1></p>
<div class="navigation">
<h2>Navigation</h2>
<ul>
<li><a href="guide.html" >Guides</a></li>
<li><a href="home3.html">Front</a></li>
<li><a href="classes.html" >Classes</a></li>
<li><a href="money.html" >Bring</a></li>
<li><a href="nongkhai2.html" >Where</a></li>
</ul> </div> <div class="centerdoc"> <p>Thank you for helping us give you the best trip possible.</p>
</div>
</body> |
Save your modified page as survey2.html and run it through a browser. Fill it out, click on your submit button, and make sure your information is coming to your email correctly.
Load both your pages (survey2.html and thanks.html) to your webhost account.
|