How do I include an HTML element to Database / Dynamic page?

Hi! If your code works for single page - I guess its possible.

Type doesnt matter in this case, let it be text.
Each dynamic page has a dataset, where you can take current object, which represents data for current dynamic page. You can then take this object, get html from it, and assign it to html component.

Something like this (not final code of course)

export function projectsDataset_ready() {
let item = $w( ‘#projectDataset’ ).getCurrentItem();
$w( ‘#html1’ ).src = item.htmlcode;
}

this or something like this should work.