-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 1.17 KB
/
index.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
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Pay Gap Calculator</title>
</head>
<body style="background-color:rgb(186, 206, 216);">
<div class="box">
<div class="input-container">
<label for="gender">Gender</label>
<div class="BoxAlign"><input type="text" id="gender" name="gender"></div>
</div>
<div class="input-container">
<label for="education" >Education</label>
<div class="BoxAlign"><input type="text" id="education" name="education"></div>
</div>
<div class="input-container">
<label for="experience" >Years of Experience</label>
<div class="BoxAlign"><input type="text" id="experience" name="experience"></div>
</div>
<div class="input-container">
<label for="age" >Age</label>
<div class="BoxAlign"><input type="text" id="age" name="age"></div>
</div>
</div>
<button class="Button" id="getData">Calculate</button>
<script src="script.js"></script>
</body>
</html>