Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Add Employee Lab</title>
  <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
  <link rel="icon" href="assets/images/favicon.png" sizes="16x16">
</head>
<body>
    <div id="maincontainer">      
            <form action="" method="post" id="theForm">
              <fieldset>
                <legend>Add an Employee</legend>
                <div><label for="firstName">First Name<br></label>
                    <input name ="firstName" id="firstName" required></input>
                </div>
              <div><label for="lastName">Last Name<br></label>
                <input name ="lastName" id="lastName"></input>
              </div>  
            <div><label for="department">Department</label><br><select name="department" id="department">
                <option value="Engineering">Engineering</option>
                <option value="Manager">Manager</option>
                <option value="Customer Support">Customer Support</option>
                <option value="Project Manager">Project Manager</option>
            </select></div>
              <div><input type="submit" value="Submit" id="submit">
              </div>
            <div id="output"></div>
            </fieldset>
          </form>
   </div><!-- End "maincontainer" -->
   <footer class="footer">
   </footer>
 
</body>
 
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers