📮 The Server's Reply (HTTP Response)
When the server gets your request, it mails back an HTTP Response with a status code:
Example
Example
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<title>HTTP Response Example</title>
6
<style>
7
body { font-family: sans-serif; background: #0f172a; color: #fff; padding: 24px; }
8
.card { background: #1e293b; padding: 24px; border-radius: 12px; border: 1px solid #334155; max-width: 600px; margin: 0 auto; }
9
.badge { background: #04AA6D; color: #fff; font-weight: bold; padding: 6px 12px; border-radius: 6px; font-family: monospace; }
10
</style>
11
</head>
12
<body>
13
14
<div class="card">
15
<span class="badge">HTTP/1.1 200 OK</span>
16
<h2 style="color:#04AA6D; margin-top:16px;">Server Response Payload</h2>
17
<p>The web server successfully processed your request and returned this live HTML page to your browser!</p>
18
</div>
19
20
</body>
21
</html>
