Skip to content

thiruking/simplewebserver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PROGRAM:

EX01 Developing a Simple Webserver

Date:26.10.2024

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>
    <CENTER>
    <H1>LAPTOP CONFIGURATION</H1>
</CENTER>
    <BODY>
        <CENTER>
        <TABLE border="2" CELLPADDING="10">
 <TR>
    <TD>LAPTOP NAME:</TD><TD>LENOVO LOQ</TD>
 </TR>           
<TR>
    <TD>DEVICE NAME:</TD><TD>LAPTOP-O8P3JV8H</TD>
</TR>
<TR>
    <TD>OPERATIN SYSTEM:</TD><TD>WINDOWS 11 HOME</TD>
</TR>
<TR>
    <TD>PROCESSOR:</TD><TD>AMD Ryzen 5 7235HS </TD>
</TR>
<TR>
    <TD>CLOCK SPEED:</TD><TD>Max Frequency up to 4.2 GHz</TD>
</TR>
<TR>
    <TD>INSTALLED RAM:</TD><TD>24GB RAM </TD>

</TR>
<TR>
    <TD>RAM TYPE:</TD><TD>DDR5</TD>
</TR>
<TR>
    <TD>GRAPHIC PROCESSOR:</TD><TD>NVIDIA GeForce RTX 3050</TD>
</TR>
<TR>
    <TD>SSD CAPACITY</TD><TD>512GB</TD>
</TR>
<tr>
    <td>TYPE</td><td>GAMING LAPTOP</td>
</tr>
<TR>
    <TD>POWER SUPPLY</TD><TD>170W</TD>
</TR>
</CENTER>
    </BODY>
</TABLE>
</HTML>

OUTPUT:

alt text alt text

RESULT:

The program for implementing simple webserver is executed successfully.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 99.2%
  • HTML 0.8%