write a html code for employee log form

in this html tutorial we are learn about code for display employee log form it should have provision to take employee name ,date of joining and department , use check box for selecting from three give alternative for department as HR, sales , marketing , button should be should be provided for clearing and submitting data. 
code:-
<html>
<head>
    <title>employee log</title>
    </head>
    <body>
        <form name="1">
        employee name:<input type="text" name="t1"><br>
        date of joining:<input type="text" name="t2"><br>
        depertment:<input type="checkbox" name="c1">HR
            <input type="checkbox" name="c2">sales
            <input type="checkbox" name="c3">marketing
        <input type="button" value="submit"><br>
            <input type="button" value="reset">
        </form>
    </body>
</html>
output:-

Post a Comment

0 Comments