Export project 3D to single html file

I am having trouble exporting a 3d project to a single html file. Can you help me?

How do you mean save to HTML;

you can use the simple save to string if your looking to just out put a stream.

std::string htmlString= “”;

//Some Loop Here
htmlString = htmlString + "<b>Your Suff here </b><br>";

htmlString = htmlString +  "</body></html>";

auto file = FileUtilsAndroid::getInstance()->getWritablePath() + "YouFileName.html";
FileUtilsAndroid::getInstance()->writeStringToFile( htmlString, file);