Created
June 16, 2023 02:41
-
-
Save mark05e/4ceb05c95fc102593da7bee5c5fd8100 to your computer and use it in GitHub Desktop.
Example to show local and appscript file references
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base target="_top"> | |
<style><?!= HtmlService.createHtmlOutputFromFile('styles').getContent(); ?></style> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<h1>Welcome to the Sidebar</h1> | |
<p>This is some content inside the sidebar.</p> | |
<script src="script.js"></script> | |
<script><?!= HtmlService.createHtmlOutputFromFile('script').getContent(); ?></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment