Skip to main content
Version: Upcoming 🦄

Referencing CSS and JS Files

In HybridForms, you can enhance the customization and styling of your Form by using custom CSS, and you can add additional functionality using custom JavaScript code. This is done in the head section of a HTML template file:

<head>
...
<link rel="stylesheet" href="example.css" />
<script src="ExampleHelpers.js"></script>
...
</head>
Note

You can use SASS (*.scss) and TypeScript (*.ts) as well. Escpecially TypeScript is the recommended way to write Custom Code. As in a regular web App, the TypeScript and SCSS code needs to be transpiled into JavaScript and CSS first. In our formDev, this process is initiated automatically upon saving your files.