Assignment Details

Web Forms

Academic Year 2017/18

Advanced Computers 4th Period Tue/Thu

Date Due

May 17, 2018

Additional Info
Please read pages 145 to 172. This will cover web forms.
web forms are essentials elements for collecting data about users that visit websites. Also, web forms allow the developer to validate and authenticate users that access resources or services on the web.

<form>
First name:<br>
<input type="text" name="firstname"><br>
Last name:<br>
<input type="text" name="lastname">
</form
>