FlowLaunch Documentation

Complete guide to customize and deploy your template

📋 Table of Contents

  1. Introduction
  2. File Structure
  3. Getting Started
  4. Customization Guide
  5. Pages Overview
  6. Deployment
  7. Support & Credits

1. Introduction

Thank you for purchasing FlowLaunch! This is a modern, lightweight HTML5 template built specifically for SaaS products, startups, and digital businesses.

Key Features:

2. File Structure

Understanding the file structure will help you navigate and customize the template efficiently.

flowlaunch/ │ ├── index.html # Homepage ├── about.html # About page ├── pricing.html # Pricing page ├── contact.html # Contact page │ ├── assets/ │ ├── css/ │ │ ├── style.css # Main stylesheet │ │ └── responsive.css # Responsive styles │ │ │ ├── js/ │ │ └── main.js # All JavaScript functionality │ │ │ ├── images/ # Your images go here │ └── fonts/ # Custom fonts (optional) │ ├── documentation/ │ └── index.html # This file │ └── README.txt # Quick start guide

3. Getting Started

Step 1: Extract Files

Extract all files to your desired location. Make sure to maintain the folder structure.

Step 2: Open in Browser

Simply open index.html in your web browser to view the template locally.

💡 Tip: Use a code editor like VS Code, Sublime Text, or Atom for easy editing.

Step 3: Start Customizing

Begin by editing the content in the HTML files and adjusting colors in the CSS files.

4. Customization Guide

Changing Colors

The template uses a consistent color scheme throughout. To change colors:

Primary Colors:

Open assets/css/style.css and find these colors:

Color Current Value Usage
Primary #6366f1 Buttons, links, accents
Secondary #8b5cf6 Gradients, highlights
Dark #111827 Headings, dark text
Gray #6b7280 Body text, descriptions

Use Find & Replace to change all instances of a color throughout the CSS file.

Changing Text Content

To edit text, simply open any HTML file and modify the content between tags:

<h1 class="hero-title">Your New Title Here</h1>
<p class="hero-subtitle">Your new description here</p>

Adding Images

  1. Place your images in the assets/images/ folder
  2. Replace placeholder divs with image tags:
<!-- Replace this: -->
<div class="image-placeholder"></div>

<!-- With this: -->
<img src="assets/images/your-image.jpg" alt="Description">

Changing Logo

The logo is text-based by default. To use an image logo:

<div class="logo">
    <a href="index.html">
        <img src="assets/images/logo.png" alt="FlowLaunch" height="32">
    </a>
</div>

Customizing Pricing

Edit pricing in pricing.html or index.html:

<span class="amount" data-monthly="29" data-yearly="23">29</span>

The data-monthly and data-yearly attributes control the pricing toggle.

Customizing Forms

The contact form is UI-only. To make it functional:

⚠️ Important: You'll need to integrate a backend service or use a form handling service like Formspree, Netlify Forms, or custom PHP script.

5. Pages Overview

Homepage (index.html)

The main landing page includes:

About Page (about.html)

Company information page with:

Pricing Page (pricing.html)

Detailed pricing with:

Contact Page (contact.html)

Contact information and form with:

6. Deployment

Option 1: Traditional Web Hosting

  1. Get hosting from providers like Hostinger, Bluehost, or SiteGround
  2. Upload all files via FTP/SFTP to your hosting's public_html folder
  3. Access your site via your domain name

Option 2: Netlify (Recommended for Static Sites)

  1. Create a free account at netlify.com
  2. Drag and drop your entire project folder
  3. Get instant deployment with free SSL

Option 3: GitHub Pages

  1. Create a GitHub repository
  2. Upload your files
  3. Enable GitHub Pages in repository settings
  4. Access at username.github.io/repository-name
✅ Pro Tip: For best performance, optimize images before deployment using tools like TinyPNG or ImageOptim.

7. Support & Credits

Browser Support

This template works on all modern browsers:

Technologies Used

Credits

📧 Need Help?
If you have questions or need assistance, please don't hesitate to reach out to our support team.
← Back to Homepage