WebFund 2016W Lecture 5: Difference between revisions
Created page with "==Video== The video from the lecture given on January 21, 2016 [http://homeostasis.scs.carleton.ca/~soma/webfund-2016w/lectures/comp2406-2016w-lec05-21Jan2016.mp4 is now avai..." |
|||
Line 7: | Line 7: | ||
===formtest.html=== | ===formtest.html=== | ||
<source lang=" | <source lang="html4strict"> | ||
<html> | <html> | ||
<head> | <head> |
Revision as of 18:02, 22 January 2016
Video
The video from the lecture given on January 21, 2016 is now available.
Notes
formtest.html
<html>
<head>
<title>A simple web page</title>
</head>
<body>
<h1>A SIMPLE WEB PAGE (really)</h1>
<p>It isn't so bad.</p>
<form action="useName" method="POST">
What is your name?
<input name="theName" type="text"></input>
<input type="submit"value="Done!" />
</form>
</body>
</html>