-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (46 loc) · 1.9 KB
/
Copy pathabout.html
File metadata and controls
52 lines (46 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About This Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>About This Project</h1>
<p>This HTTP server was built using C programming language.</p>
<p>It serves static files like HTML, CSS, and JavaScript from a directory.</p>
<h2>Project Features</h2>
<ul>
<li>Handles multiple client requests concurrently.</li>
<li>Supports basic HTTP methods: GET and POST.</li>
<li>Serves static files including images and documents.</li>
<li>Provides error handling for missing files.</li>
</ul>
<h2>Installation and Usage</h2>
<p>To run the server, follow these steps:</p>
<ol>
<li>Clone the repository from GitHub.</li>
<li>Compile the source code using GCC: <code>gcc -o http_server simple_http_server.c -lpthread</code></li>
<li>Run the server: <code>./http_server</code></li>
<li>Open your web browser and go to <code>http://localhost:8080</code>.</li>
</ol>
<h2>Future Improvements</h2>
<p>In future versions, we plan to add:</p>
<ul>
<li>Support for HTTPS.</li>
<li>Advanced logging features.</li>
<li>RESTful API for dynamic content.</li>
</ul>
<h2>Follow Us</h2>
<p>Stay updated by following us on social media:</p>
<ul>
<li><a href="https://twitter.com/yourproject" target="_blank">Twitter</a></li>
<li><a href="https://github.com/yourproject" target="_blank">GitHub</a></li>
</ul>
<h2>Contact Us</h2>
<p>If you have any questions, feel free to reach out to us at:</p>
<p>Email: <a href="mailto:your_email@example.com">your_email@example.com</a></p>
<p><a href="/">Back to homepage</a></p>
</body>
</html>