23 lines
590 B
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>
|