2
2
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employee Details</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.employee {
display: flex;
align-items: center;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px 0;
}
.photo {
margin-right: 20px;
}
img {
width: 100px;
height: 100px;
border-radius: 50%;
}
button {
background-color: red;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Employee Details</h1>