To develop a simple webserver to serve html pages.
HTML content creation.
Design of webserver workflow.
Implementation using Python code.
Serving the HTML pages.
Testing the webserver.
<!DOCTYPE html>
<html>
<head>
<title>Using Python's SimpleHTTPServer Module</title>
<style>
#rectangle {
height: 50px;
width: 100px;
background-color: #00f28f;
}
</style>
</head>
<body>
<h2>Rectangle served by SimpleHTTPServer</h2>
<div id="rectangle"></div>
</body>
</html>
The program for implementing simple webserver is executed successfully.
