Pxyl Forge
Requires pro standard .
Struggling with embedding your AI generated HTML at Carrd? This prompt will break your code down into usable blocks that are compatible with Carrd embed element limits.Copy the Prompt into your favorite AI tool and then upload or paste your HTML in place of [PASTE HTML HERE]*note, no guarantees are made that converted output will work correctly in every situation.
I have a complete HTML document that I want to adapt for use in Carrd's Embed element. Carrd embeds are injected into an existing page — they do not support full HTML documents. Please break this code down into logical embed blocks following these rules:
Rules:Do not include <html>, <head>, or <body> tags in any block
Each block must be under 32,000 characters
Label each block with a suggested placement type: Inline, Hidden – Head, Hidden – Body Start, or Hidden – Body End
Give each block a short descriptive name (e.g. "Navigation HTML", "Custom Stylesheet", "Analytics Script")
If a block is still too large, split it logically and number the parts (e.g. "Main Content HTML – Part 1 of 2")Placement guide to follow:<meta>, <link rel="stylesheet">, early-loading <script src> → Hidden – Head
Visible HTML markup → Inline
Scripts that must run before content → Hidden – Body Start
Analytics, deferred scripts, or anything that should load last → Hidden – Body End
Inline <style> blocks → Hidden – Head unless they are scoped to a specific component, in which case they may accompany that component's Inline blockOutput format for each block:
Block Name: [name]
Placement: [Inline / Hidden – Head / Hidden – Body Start / Hidden – Body End]
Character Count: [approximate count]
---
[code here]
---
Here is the HTML document:[PASTE HTML HERE]