Trying to build a personal website using Google App Script - have set up a main html page, a css page and a js page.
On the main page I have a menu and a main div area where I inject content upon clicking on the links in the menu (so clicking on a link to a YouTube video embed the video in the main div area)
So far so good
Some of the content is text block - a cv, a bio etc - I want to have them in a separate document (so i can edit the easily) and load them into the div area whenever needed. I managed to do this making a google doc but when using the embed code i get a frame and other stuff (like "Published by Google Drive–Report Abuse") that I don't want...
So I thought I can create another html file for each text document (where I can format using html tags etc) and load that html into the div area but I am not sure how to do it...