1. The HTTP Response Structure
Example
1
HTTP/1.1 200 OK
2
Content-Type: text/html; charset=utf-8
3
Content-Length: 1250
4
Date: Sun, 13 Sep 2026 15:31:43 GMT
5
6
<!DOCTYPE html>
7
<html lang="en">
8
<head>
9
<meta charset="UTF-8">
10
<title>Response Demo</title>
11
</head>
12
<body>
13
<h1>My First Heading</h1>
14
<p>My first paragraph.</p>
15
</body>
16
</html>
2. Inspecting Response Headers in Chrome DevTools

3. Inspecting HTTP 200 OK via curl.exe

⊞Administrator: Windows 11 Command Prompt (cmd.exe)
>curl.exe -I https://nextsem.online/
⊞Windows 11 Execution OutputReal PC Match
Microsoft Windows [Version 10.0.22631.3007] (Windows 11 Pro x86_64)
(c) Microsoft Corporation. All rights reserved.
HTTP/1.1 200 OK
Connection: keep-alive
Content-Length: 58129
Cache-Control: max-age=3600
Content-Type: text/html; charset=utf-8
Etag: "4b2a58c512e5c9776fe87f1ba1c4b5268cc3833e7d1374d604ea55ccc45600ec"
Strict-Transport-Security: max-age=31556926
Accept-Ranges: bytes
Date: Sun, 13 Sep 2026 15:29:27 GMT
X-Cache: HIT
