Skip to content
 
 

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

EX01 Developing a Simple Webserver

Date:

AIM:

To develop a simple webserver to serve html pages and display the configuration details of laptop.

DESIGN STEPS:

Step 1:

HTML content creation.

Step 2:

Design of webserver workflow.

Step 3:

Implementation using Python code.

Step 4:

Serving the HTML pages.

Step 5:

Testing the webserver.

PROGRAM:

<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>



OUTPUT:

image

RESULT:

The program for implementing simple webserver is executed successfully.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors