Project Overview
Digitom is a set of static HTML website templates for digital marketing agencies, offering a complete collection of pages including Home, About Us, Services, Case Studies, Team, Pricing, Blog, and Contact — ideal for quickly building a digital marketing company website.
Tech Stack
- Bootstrap 5 (responsive layout framework)
- Font Awesome 6 (icon library)
- Slick (carousel component)
- Odometer (number scroll animation)
- Animate.css (CSS animations)
- Google Fonts: Public Sans (primary font)
- Pure HTML/CSS/JS, no build tools required
Project Structure
digitom-html-live/
├── index.html # Homepage
├── home-v2.html # Homepage variant 2
├── home-v3.html # Homepage variant 3
├── about-us.html # About Us
├── services.html # Services
├── casestudies.html # Case Studies
├── team.html # Team
├── pricing.html # Pricing
├── blog.html # Blog
├── contact.html # Contact
└── assets/
├── css/
│ ├── bootstrap.min.css
│ ├── fontawesome.min.css
│ ├── animate.css
│ ├── odometer.css
│ ├── slick.min.css
│ └── style.css
└── img/ # Image assets
Key File Descriptions
index.html— Main entry point of the website, includes navigation, carousel, counters, and other core modulesassets/css/style.css— Main stylesheet defining layout and visual styles for all pagesassets/css/bootstrap.min.css— Bootstrap framework styles providing responsive grid systemassets/css/odometer.css— Number scroll animation styles for displaying statisticsassets/css/slick.min.css— Slick carousel component stylescasestudies.html— Case studies listing page
Quick Start
Simply open digitom-html-live/index.html in your browser to preview. For the full experience, access via a local server:
# Using Python
python -m http.server 8000
# Or using npx
npx serve .
Usage Tips
The template includes 3 homepage variants. It is recommended to choose one based on your brand style and then modify the content. All pages use Bootstrap's .container and .container-fluid layout — adjust the grid to change widths. This is a pure static template; the contact form requires you to integrate your own backend service.
