html
html
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
26
27
28
<html>
<head>
<title>
Employee Salary Calculator
</title>
</head>
<body>
<h3 style="text-align:center; color:white; margin-bottom:5px; background-color: #32a96c;">Welcome to online Salary Calculator</h3>
<h4>
<td>Designation:</td>
<h5> <input type="radio" name="Designation" value="Assistant Teacher" checked="checked"/>Assistant Teacher:
<input type="radio" name="Designation" value="Teacher" />Teacher:
<input type="radio" name="Designation" value="Lacturer" />Lacturer: </h5>
</h4>
<table style="text-align:left; margin: 0 auto;">
<form action="">
<hr>
<tr>
<td>7th Pay Basic:</td>
<td>
<select id="BSalary" name=" " style="width: 80;"><option value="1">-- Select --</option>
<option value="25300" selected> 25300</option>
<option value="26100"> 26100</option>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run