An Azure service that provides an event-driven serverless compute platform.
@Nick Romanek When saving a page from browser, it saves other supporting files as well. In your case, based on the screenshot that you've shared, you are likely missing the required CSS files.
For that, you would have to do two things
- Download linked CSS files (and JS too if required but would be a more complex for dynamic sites without SSR)
- Update the links in the downloaded HTML to point to the downloaded supporting files
This is more or less what browsers do today I believe, and you could replicate the same by parsing the HTML to find supporting files and update the content accordingly (which might be a bit too complex to do with logic apps). It would be better to offload this to Azure Functions and leverage an existing scraping library that already does the job for you.
