This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
portfolio/computer-science-blog/pages/http.html
2018-12-08 15:56:38 +00:00

10 lines
650 B
HTML

<!-- Reading School 2018, HTML page by Matthew Grove, Year 10 -->
<h2>HTTP</h2>
<p>
HTTP is Hypertext Transfer (or Transport) Protocol, the underlying data transfer protocol used on the World Wide Web.
It defines what actions web servers and browsers should take in response to commands. For example, when a URL is opened
or hyperlink (which is a URL) clicked, your web browser actually sends an HTTP request to the server which hosts the website you're
trying to access, in order to fetch it and display it on your screen. Obviously, for each web server to understand these requests,
the server and request must both follow this protocol.
</p>