Official website for Fleet Manager - a lightweight fleet management SaaS solution designed for small businesses and micro fleets with fewer than 10 vehicles.
- Main Website: https://www.carsmanager.net
- SaaS Application: https://app.carsmanager.net
- Multi-language Support: Available in English and Chinese (Simplified)
- Responsive Design: Optimized for desktop, tablet, and mobile devices
- SEO Optimized: Complete with meta tags, Open Graph, Twitter Cards, and Schema.org structured data
- Fast Loading: Lightweight static HTML/CSS with no JavaScript dependencies
- Accessibility: Semantic HTML structure with proper ARIA labels
- Home - Landing page with product overview
- Features - Detailed feature descriptions
- Roadmap - Future development plans
- Contact - Contact information and support
- Privacy Policy - Data protection policy
- Terms of Service - User agreement
- HTML5: Semantic markup
- CSS3: Custom styles with responsive design
- No JavaScript Frameworks: Pure HTML/CSS for maximum performance
- Schema.org: Structured data for SEO
fm_siteweb/
├── index.html # English homepage
├── features.html # English features page
├── contact.html # English contact page
├── roadmap.html # English roadmap page
├── privacy.html # English privacy policy
├── terms.html # English terms of service
├── styles.css # Main stylesheet
├── robots.txt # Search engine directives
├── zh/ # Chinese version
│ ├── index.html
│ ├── features.html
│ ├── contact.html
│ ├── roadmap.html
│ ├── privacy.html
│ └── terms.html
└── README.md # This file
- A web browser (Chrome, Firefox, Safari, Edge)
- A web server (optional, for production deployment)
-
Clone the repository
git clone https://github.com/yourusername/fm_siteweb.git cd fm_siteweb -
Open the website
- Simply open
index.htmlin your web browser - Or use a local web server:
# Using Python 3 python -m http.server 8000 # Using Node.js (http-server) npx http-server # Using PHP php -S localhost:8000
- Simply open
-
View the website
- Navigate to
http://localhost:8000
- Navigate to
This is a static website that can be deployed to any static hosting service:
GitHub Pages
# Push to GitHub and enable GitHub Pages in repository settingsNetlify
# Drag and drop the folder to Netlify
# Or use Netlify CLI
npm install -g netlify-cli
netlify deployVercel
# Install Vercel CLI
npm install -g vercel
vercelAWS S3 + CloudFront
# Upload files to S3 bucket and configure CloudFrontTraditional Web Hosting
- Upload all files to your web server's public directory (e.g.,
/var/www/html)
The website automatically detects the user's browser language and redirects to the appropriate version:
- English users → English version
- Chinese users → Chinese version
Users can also manually switch languages using the language toggle in the header.
Replace [email protected] with your actual email address in all HTML files.
Replace www.carsmanager.net and app.carsmanager.net with your actual domain names.
Replace code-verify-key with your actual Baidu site verification code in Chinese pages.
Edit the color variables in styles.css:
/* Primary color */
#667eea
/* Hover color */
#5568d3The website includes comprehensive SEO optimization:
- Meta Tags: Title, description, keywords, author
- Open Graph: Facebook and LinkedIn sharing
- Twitter Cards: Twitter sharing
- Canonical URLs: Prevent duplicate content issues
- Schema.org: Structured data for rich snippets
- Robots.txt: Search engine crawling directives
- Semantic HTML: Proper heading hierarchy and structure
Contributions are welcome! Please follow these steps:
- Fork the repository
- Create a feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
For questions or support:
- Email: [email protected]
- Website: https://www.carsmanager.net
- Built with pure HTML and CSS for maximum performance
- Responsive design for all devices
- SEO best practices implementation
Made with ❤️ by Fleet Manager Team