To develop a simple webserver to serve html pages and display the configuration details of laptop.
HTML content creation.
Design of webserver workflow.
Implementation using Python code.
Serving the HTML pages.
Testing the webserver.
<html>
<body>
<title>LENOVO THINKPAD </title>
<center>
<br>
<br>
<br>
<br>
<br>
<table border="10" bgcolor="lavender" cellpadding="10">
<caption align="center"></caption>
<th colspan="7" align="center" bgcolor="plum"> LAPTOP SPECIFICATIONS </th>
<tr>
<th>S.NO</th>
<th>SPECIFICATIONS</th>
<th>DETAILS</th>
</tr>
<tr>
<td> 1</td>
<td> Device Name</td>
<td> DESKTOP-MOHHBTU</td>
</tr>
<tr>
<td> 2</td>
<td> Installed RAM</td>
<td> 16.0 GB(15.7 GB usable) /td>
</tr>
<tr>
<td> 3 </td>
<td> Processor</td>
<td> 13th Gen Intel(R) Core (TM) i5-1335U 1.30 Hz</td>
</tr>
<tr>
<td> 4 </td>
<td> OS build </td>
<td> 22631.4460</td>
</tr>
<tr>
<td> 5 </td>
<td> Version</td>
<td> 23H2</td>
</tr>
</table>
</center>
</body>
</html>
The program for implementing simple webserver is executed successfully.
