Custom Code
Studio owners can add tracking pixels, analytics tags, and other third-party services to the site.
Cascading Style Sheets
Apply your own CSS across every page on the site.
# Example of a small helper that merges two subtotalsdef merge_totals(a, b): """ Takes two subtotals and hands back their combined value. :param a: first subtotal :param b: second subtotal :return: sum of a and b """ return a + b # Calling the helpertotal = merge_totals(18, 24)print("Combined total:", total)Head Snippets
Add extra HTML or JavaScript inside the head tag on every page.
Signed-In Snippets
Run code only for students who are logged into the studio.