24 lines
740 B
HTML
24 lines
740 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Web Under the Hood</title>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
HTTP Echo Server
|
|
<!--BLINK-->
|
|
</h1>
|
|
<p>Check your terminal - the server printed everything it received.</p>
|
|
<h2>Try these:</h2>
|
|
<ul>
|
|
<li><a href="/form">POST form demo</a></li>
|
|
<li><a href="/set-cookie">Set a cookie</a></li>
|
|
<li><a href="/show-cookies">Show cookies the server received</a></li>
|
|
<li><a href="/json">JSON response</a></li>
|
|
<li><a href="/delay">Delayed response</a></li>
|
|
<li><a href="/status">HTTP status codes</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|