Added codes and softcopy.

This commit is contained in:
K
2025-06-11 14:19:19 +05:30
parent 091a580a74
commit 7df8927c43
32 changed files with 446 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employee List</title>
<style>
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h2>Employee List</h2>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Position</th>
<th>Department</th>
<th>Salary</th>
</tr>
<tr>
<td>1</td>
<td>Kshitij K</td>
<td>DevOps Engineer</td>
<td>IT</td>
<td>6000000</td>
</tr>
<tr>
<td>2</td>
<td>Ayush Kalas</td>
<td>Project Manager</td>
<td>IT</td>
<td>8000</td>
</tr>
<tr>
<td>3</td>
<td>Ombase</td>
<td>Frontend Developer</td>
<td>IT</td>
<td>500</td>
</tr>
</table>
</body>
</html>