This endpoint mixes plain text content with embedded images to test how your scraper handles pages that reference images by remote URL as well as pages that embed images directly as base64-encoded data URIs. Both approaches are common on real-world websites, so scrapers need to handle each correctly.
The image below is referenced by its remote URL, hosted on the crawl-lab asset server. A scraper following image links will need to issue a separate request to fetch this file.
The image below is embedded directly in the HTML as a base64-encoded data URI. No additional network request is required to load this image since the bytes are inlined in the page markup itself. This is a common pattern for small icons and inline assets.
This paragraph provides extra text content surrounding the images so that scrapers extracting body text can be tested against a realistic mixed-content page, combining prose with both linked and embedded media assets.