Project Overview
Binifox is a set of static website templates designed for digital agencies, including 12 pages such as Home, About, Portfolio, Services, Team, Blog, etc. It integrates interactive components like Swiper carousel, Isotope filtering, and MeanMenu mobile navigation, making it suitable for quickly building agency, design, or consulting company websites.
Tech Stack
- HTML5 + CSS3
- Bootstrap 5 (grid system, responsive utilities)
- jQuery (DOM manipulation and plugin calls)
- Swiper (Hero slideshow / Team / Testimonials carousel)
- OwlCarousel (backup carousel component)
- MeanMenu (mobile hamburger menu)
- Isotope (Portfolio filtering layout)
Project Structure
binifoxhtml-10/
├── binifox/
│ ├── index.html # Homepage
│ ├── index-2.html # Homepage variant
│ ├── about.html
│ ├── services.html # Services list
│ ├── services-details.html
│ ├── portfolio.html # Portfolio (with filtering)
│ ├── portfolio-details.html
│ ├── team.html # Team
│ ├── team-details.html
│ ├── blog.html # Blog list
│ ├── blog-details.html
│ ├── contact.html # Contact form
│ ├── pricing.html
│ ├── faq.html
│ ├── error.html # 404 page
│ └── assets/
│ ├── css/
│ │ ├── style.css # All theme styles
│ │ ├── bootstrap.min.css
│ │ └── ...
│ ├── js/
│ │ ├── main.js # All interactive logic
│ │ └── ...
│ └── img/
└── documentation/ # Official documentation
Key File Descriptions
binifox/index.html— Main entry page with complete structure and full feature demobinifox/assets/css/style.css— All theme styles defining colors, typography, and component stylesbinifox/assets/js/main.js— All interactive logic (carousel, filtering, sticky navigation, scroll-to-top, etc.)binifox/assets/css/bootstrap.min.css— Bootstrap 5 base grid and utility classesbinifox/contact.html— Contact form page, relies onassets/js/ajax-form.jsfor asynchronous submissiondocumentation/index.html— Official documentation including installation steps and file structure explanation
Quick Start
This is a pure static project with no build tools required. Deploy the binifox/ directory to any web server or simply open index.html in a browser for local preview. To run a local server:
# Python 3
python -m http.server 8080
# Node.js
npx serve
Usage Suggestions
- Replace images in
assets/img/and modify color variables instyle.cssto quickly change the theme - The contact form (
contact.html) relies onassets/js/ajax-form.js; for production use, integrate with a backend or third-party form service - Mobile navigation is handled by MeanMenu; navigation data is written in the
<nav>tags of each HTML file and can be customized as needed
