Project Introduction
Powerx is an HTML5 multi-page template designed for power/electrical service companies, suitable for building official websites for electrical repair, installation, energy companies, etc. The template is built with Bootstrap 5 and provides complete pages including homepage styles, team showcase, service details, project cases, blog, FAQ, and comes with a contact form PHP email sending feature.
Tech Stack
- Bootstrap 5.0.1 (responsive layout framework)
- HTML5 + CSS3 + JavaScript (vanilla)
- jQuery (interactive functionality)
- Font Awesome (icons)
- Nice Select / Owl Carousel / Slick (UI components)
- PHP (contact form email sending)
Project Structure
powerxhtml-10/downloadable/
├── powerx/ # Template main directory
│ ├── index.html # Homepage (Homepage Style 1)
│ ├── index-2.html # Homepage Style 2
│ ├── index-3.html # Homepage Style 3
│ ├── about.html # About Us
│ ├── services.html # Services List
│ ├── services-single.html # Service Detail Page
│ ├── proejcts.html # Projects/Cases List
│ ├── projects-single.html # Project Detail Page
│ ├── team.html # Team Page (Style 1)
│ ├── team-s2.html # Team Page (Style 2)
│ ├── testiminial.html # Testimonials (Style 1)
│ ├── testiminial-s2/s3.html # Testimonials (Style 2/3)
│ ├── blog.html # Blog List
│ ├── blog-single.html # Blog Detail
│ ├── contact.html # Contact Page
│ ├── faq.html # FAQ
│ ├── 404.html # Error Page
│ ├── mail-contact.php # Form Email Processing
│ └── assets/ # Static Resources
│ ├── css/ # Style Files (including style.css)
│ ├── js/ # Script Files
│ └── images/ # Image Resources
└── documentation/ # Official Documentation (Template Guide)
Core File Description
powerx/index.html— Main homepage template, defines overall layout structure and navigationpowerx/assets/styles/style.css— Main stylesheet, centrally manages site-wide appearancepowerx/assets/css/bootstrap.min.css— Bootstrap core stylespowerx/mail-contact.php— Contact form backend, handles email sending logicpowerx/assets/js/script.js— Business interaction scripts (menu, scrolling, etc.)powerx/contact.html— Contact page, embedded form submission entry
Quick Start
- Deploy the
powerxfolder to a web server (e.g., Apache/Nginx) - Directly access
index.htmlto preview in the browser - The contact form requires server-side PHP support; after deployment, modify the
$toemail address inmail-contact.php
Usage Suggestions
The template provides 3 homepage styles and various inner page layouts. Simply copy the corresponding HTML files to quickly build pages. When deploying the contact form, configure a valid PHP email environment (it is recommended to use PHPMailer instead of the native mail() function to improve delivery rates).