16 lines
345 B
HTML
16 lines
345 B
HTML
|
<!doctype html>
|
||
|
<html lang="">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Pico HTTP server</title>
|
||
|
<meta name="description" content="This is a very simple HTTP server for Unix, using fork(). It's very easy to use.">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Hello world!</h1>
|
||
|
</body>
|
||
|
|
||
|
</html>
|