클라이언트에서 웹 서버에게 아래 URL을 요청한다.
http://ip:8080/hacking/hacking.html
요청을 받은 서버가 해당 경로의 html파일을 응답한다.
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Happy Hacking</h1>
</body>
</html>
서버가 html파일을 클라이언트에게 응답하면 클라이언트는 html파일을 해석해 내용을 출력한다.