P2B-WEB-2026_2025/block-01/week-01-the_web_under_the_hood/demo/status.html

23 lines
590 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTTP Status Codes | Web Under the Hood</title>
</head>
<body>
<h1>
HTTP Status Codes
<!--BLINK-->
</h1>
<h2>2xx Success</h2>
<ul id="http-200"></ul>
<h2>3xx Redirection</h2>
<ul id="http-300"></ul>
<h2>4xx Client Errors</h2>
<ul id="http-400"></ul>
<h2>5xx Server Errors</h2>
<ul id="http-500"></ul>
<script type="module" src="/src/status.ts"></script>
</body>
</html>