Project Overview
Struqta is a multi-page HTML template for the industrial and construction sectors, developed by ThemeEster. It offers 4 homepage variants (Default, Modern, Classic, Industrial) and includes functional pages for services, project cases, blog, team, client testimonials, etc., making it suitable for quick corporate website setup.
Tech Stack
- HTML5 / CSS3 (Main stylesheet + Bootstrap 4)
- JavaScript (jQuery plugins: Slick carousel, Venobox lightbox, Odometer number animation, etc.)
- PHP (contact.php / quote.php for form email sending)
- FontAwesome icon library
Project Structure
text
struqtahtml-10/Master Files/
├── Documentation/
│ └── index.html # Template usage documentation
├── html/
│ ├── assets/ # Static resources (CSS/JS/images)
│ ├── index.html # Homepage (Default style)
│ ├── index-2.html # Homepage (Modern style)
│ ├── index-3.html # Homepage (Classic style)
│ ├── index-4.html # Homepage (Industrial style)
│ ├── about.html # About Us
│ ├── service.html # Services
│ ├── project-3-col.html # Project showcase (3 columns)
│ ├── project-4-col.html # Project showcase (4 columns)
│ ├── blog-classic.html # Blog listing
│ ├── contact.html # Contact Us
│ ├── contact.php # Contact form processing
│ └── quote.php # Quote form processing
Key Files Description
html/index.html— Default homepage with complete modules: top info bar, navigation, hero section, services, projects, skills, team, testimonials, contacthtml/contact.php— Processes contact.html form submissions, validates and sends email to specified recipienthtml/quote.php— Processes quote request forms, collects name, phone, service type, etc., and sends emailhtml/assets/css/main.css— Main template stylesheet with component style overrideshtml/assets/css/bootstrap.min.css— Bootstrap 4 base layout and grid systemhtml/service.html— Service details page showcasing industrial/construction services
Quick Start
- Static page preview: Open
html/index.htmldirectly in a browser - Local server preview (recommended): Run
python -m http.server 8080in thehtmldirectory, then visithttp://localhost:8080 - Enable form functionality: Deploy the
htmldirectory on a PHP-enabled web server, and update the$recipientemail address incontact.php/quote.phpto your actual receiving email
Usage Tips
- This template uses a multi-page structure, ideal for complete corporate websites; choose from 4 homepage style variants based on brand identity
- PHP forms rely on the server-side
mail()function, which may be restricted in shared hosting environments; consider using SendGrid / Mailgun email APIs as an alternative
