Skip to content

Instantly share code, notes, and snippets.

@mark05e
Created June 16, 2023 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mark05e/4ceb05c95fc102593da7bee5c5fd8100 to your computer and use it in GitHub Desktop.
Save mark05e/4ceb05c95fc102593da7bee5c5fd8100 to your computer and use it in GitHub Desktop.
Example to show local and appscript file references
<!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