kkingxt786
Public
0
0 snippets
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>job form</title>
<style>
h1{ background-color: rgb(170, 180, 29);
height: 50px;
width:300px;
border: 4px solid green;
border-width: 4px;
border-color: green;
border-style: solid;
border-radius: 11px;
}
div{
color: rgb(104, 32, 32 );
}
br{
color: rgb(104, 32, 32);
}
hr{ color: rgb(104, 32, 32); } body{ background-color: rgb(76, 252, 7); } </style>
</head> <body> <h1>job form </h1> <form action="backend.php"> <div> name : <input type="my text"> </div> <hr><br> <div> email: <input type="email" name="my email" id="class"> </div> <hr><br> <div> password: <input type="password" name="my password" id="class"> </div> <hr><br> <div> date :<input type="date" name="my date"> </div> <hr><br> <div> number: <input type="number" name="my number" > </div><hr><br> <div> Are you eligible?: <input type="checkbox" name="myEligibility" checked> </div><hr> <br> <div> Gender: Male <input type="radio" name="myGender"> Female <input type="radio" name="myGender"> Other <input type="radio" name="myGender"> </div> <hr> <br> <div> Write about yourself: <br><textarea name="myText" cols="90" rows="10"></textarea> </div> <hr> <br> <div> <label for="select ROLE">SELECT ROLE</label> <select name="select ROLE" id="select ROLE"> <option value="job" selected>CEO</option> <option value="job" selected>MD</option> <option value="job" selected>HR</option> <option value="job" selected>TECHNICIAN</option> <option value="job" selected>OTHER EMPLOYEE</option> </select> </div> <br> <hr> <div> <input type="submit" value="submit"> <input type="reset" value="reset"> </div><hr> </form> </body> </html>No results
There are no results that match the criteria.