Submit the page URL to fetch its content. The editor displays the returned HTML; results depend on what the remote site allows access to.
This page asks the VoriTools server to request a web address and puts the HTML that comes back into an editor. It is a fetch-and-edit tool, not an article reader: what you see is the response source, with no readability pass and no text extraction.
The request is made by the server, so the target site sees VoriTools rather than your browser. Cookies, logins and client-side state from your own session are not sent, and pages that require them will come back as a login screen or not at all.
The request leaves from the VoriTools server, which is why this page can show source from a URL your own network might not reach. Private, loopback, link-local and cloud metadata addresses are refused before a connection is attempted, so addresses such as 127.0.0.1 or 169.254.169.254 return an explanation instead of content.
Nothing from your browser session travels with the request: no cookies, no login, no referrer of yours. The target site decides how to answer, and many large sites answer automated requests with a consent page, a challenge or a block rather than the article.
The editor holds the response body as HTML, so markup, alt attributes and inline styling survive while the page becomes editable. The editor filter removes scripts and inline event handlers, which is what keeps a fetched page from running code in your session, and the HTML source view shows the filtered result.
Links and images in the fetched page keep their original addresses. Absolute URLs still point at the source site, while relative ones resolve against this page and usually break; a document that depends on relative assets will look incomplete even though the HTML itself arrived intact.
A response that is not text — an image, a PDF, a font or a download — cannot be shown here and leaves the editor empty with a notice. A timeout, a name that does not resolve, an HTTP error status and an empty body are reported separately, so the reason for a failure stays readable.
Pages that build themselves in JavaScript return their shell markup rather than their rendered content, because the fetch does not run scripts. For the same reason a page behind a login or an anti-bot check returns what an anonymous visitor would receive. The editor shows a snapshot of one response, not a live view of the site.