Anchor Tags
HTML anchors form the links by which we can navigate throughout the internet.
Given the hostname httpbin.org
An example of an anchor element is as follows
<a href=”/html”>/html</a>
This looks like a URI but it is really a relative url, meaning relative to the hostname.
When we click on an anchor link, the browser sends a GET request /html HTTP/1.1
The browser response with text formatted with html elements to construct a webpage in the browser.