P2B-WEB-2026_2025/block-01/week-01-the_web_under_the_hood/demo/index.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>