Templates are pre-built HTML applications that serve as starting points for your own apps. They provide working examples of common functionality and can save you time when building new applications.
When logged in to your HTMLSync account:
Log in to your HTMLSync account
Visit the Template Gallery
Click on the template you want to use
Open the template by clicking the "Use free in Browser" button
Click the notification in the screenshot below to create a new app and save the localStorage data to the server
You can try templates without an account:
An app will be created and you will be redirected to the edit page
Most templates can be easily customized by modifying:
<style>
:root {
/* Change these CSS variables */
--primary-color: #3498db; /* Main theme color */
--secondary-color: #2ecc71; /* Accent color */
--background-color: #f8f9fa; /* Background */
--text-color: #2c3e50; /* Text color */
}
</style>
<title>Your App Name</title>
<!-- And in the body -->
<h1>Your App Name</h1>
// Change the storage key to avoid conflicts
const STORAGE_KEY = 'your_app_name_data';
For advanced customizations, you can modify the template code directly or provide it as an attachment to AI, and ask it to modify the code.