summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 10 hands-on assignments/Ch10_msglm/10.2.contact.html
blob: b64516547c25288580b47843c54eead6df637e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Contact Form</title>
        <meta charset="utf-8">
    </head>
    <body>
        <h1>Contact Us</h1>
        <form method="get">
            First Name: <input type="text" name="fname" id="fname">
            <br>
            <br>
            Last Name: <input type="text" name="lname" id="lname">
            <br>
            <br>
            E-mail: <input type="text" name="email" id="email">
            <br>
            <br>
            Comments:<br>
            <textarea name="comments" id="comments" rows=4 cols=40></textarea><br>
            <br>
            <input type="submit" value="Contact"> <input type="reset">
        </form>
    </body>
</html>