Computer Science, asked by shweta1999, 1 month ago

write a html program to accept name of the employee (can not be blank ) email id of employee ,salary (maxi 100000).the data should be send to the server​

Answers

Answered by mrunmaidhavale21
1

Explanation:

I don't know the answer please tell me

Answered by Glitterash
3

Answer:

<html>

<head>

<title>

Employee Information

</title>

</head>

<body>

<h1 align= "center"> Employee Information </h1>

<form>

employee name

<input type= "text" name= "Ram"><br><br>

email id

<input type= "email" name= "email"><br><br>

<input type= "submit" name="bl" value= "submit">

<label for= "salary"> choose amount </label>

<select name="salary" id="salary">

<option value="10000">10000</option>

 <option value="10000">10000</option>

</select>

</form>

</body>

</html>

Similar questions