Overview
Inject custom code into your websites for advanced customizations, tracking, and third-party integrations.Injection Points
Head Code
- Injected in
<head>section - Loads before page content
- Use for: CSS, fonts, meta tags, analytics
Body Start Code
- Injected after
<body>tag - Loads at page start
- Use for: Critical scripts, no-script fallbacks
Body End Code
- Injected before
</body> - Loads after page content
- Use for: JavaScript, chat widgets, tracking
Common Use Cases
Custom CSS
Google Analytics
Chat Widget
Custom Fonts
Best Practices
- Test code before deploying
- Minimize code for performance
- Use async/defer for scripts
- Validate HTML syntax
Tips
- Invalid code can break your site
- Use browser dev tools to debug
- Keep backups before changes
- Test on staging first