Week Three Exercises (MGDP2060)
From Wiki @ Karl Jones dot com
Revision as of 16:38, 12 September 2015 by Karl Jones (Talk | contribs)
This article contains exercises for week three of Web Design and Development III (MGDP2060).
MAMP
Run MAMP, confirm it works with your files.
Upload all your work to the web server
Be sure to use a subfolder!
Close your FTP client when not in use, in order to free up the connection.
Form exercise (for next week)
In your local root folder, create a new folder named form-cross-domain
.
In this folder, create a new document named index.html
.
Make the document an HTML5 page. Use standard styles, layout, etc. -- see Web page conventions (MGDP2060).
Create a form which submits to a different domain on the Internet.
- Any site of your choice
- For example: Wikipedia, Google, IMDB
You can use View Source or Inspect Element to copy-and-paste the <form>
element, and its contents, which can then paste into your own page.
- You will (probably, depending on the site) need to change the form's
action
property to specify a fully qualified URL.
Upload to server. Test, confirm it works.