40 lines
675 B
HTML
40 lines
675 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Report</title>
|
|
<style>
|
|
.person-deatils-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.person-details-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100px;
|
|
width: 350px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<table style="border: 1px solid black;">
|
|
<tr class="person-deatils-row">
|
|
<td class="person-details-col">
|
|
<div>Person Name : </div>
|
|
<div>Age & Sex : </div>
|
|
<div>Sample type : </div>
|
|
<div>Family History of Sickle Cell Anemia (Yes / No): </div>
|
|
</td>
|
|
<td class="person-details-col">
|
|
<div>Received on : </div>
|
|
<div>Reported on : </div>
|
|
<div>Ref. Doctor : </div>
|
|
<div>Serial No: </div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|
|
|