-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 810 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="favicon.png"/>
<link rel="stylesheet" href="stylesheet.css"/>
<title>Hello World</title>
</head>
<body>
<h1>C-HTTP: Simple C HTTP Server for Windows</h1>
<h3>Written by <a href="https://aaronryank.github.io">Ryan Klingler</a> (<a href="http://prohackr112.tk/">ProHackr112</a>)</h3>
<p>C-HTTP contains full support for HTML, CSS and JavaScript.</p>
<p>Source code:
<ul>
<li><a href="src/defaults.c">defaults.c</a></li>
<li><a href="src/error.c">error.c</a></li>
<li><a href="src/header.c">header.c</a></li>
<li><a href="src/request.c">request.c</a></li>
<li><a href="src/response.c">response.c</a></li>
<li><a href="src/server.c">server.c</a> (main)</li>
</ul>
</p>
</body>
</html>