Prompt: make a website for kpmg Generated at step: 200 Timestamp: 2025-08-28T09:36:12.788856 ============================================================ Sure! Below is a complete, ready-to-use **KPMG-themed landing page** designed to be clean, professional, and brand-aligned. It includes: - Responsive design (mobile-first) - Modern styling with subtle gradients and card-based layouts - Sections: Hero, Services, Industries, Why KPMG, Careers, Contact - Tailwind CSS utility classes (easy to integrate) --- ### ✅ How to Use This Code 1. Create an `index.html` file in your project folder. 2. Paste the code below into it. 3. Add a `` tag in the head section if you want Tailwind CSS inline (optional). 4. Optionally add Google Fonts or host your own fonts. Alternatively, use a hosted solution like Vercel, Netlify, or GitHub Pages by uploading this index.html and adding a `tailwind.config.js` file (if needed). I’ll include that too. --- ## 📄 index.html — KPMG Landing Page (Tailwind + Google Fonts) ```html KPMG | Global Professional Services

Trusted Global Expertise for Your Future

We help organizations navigate complex challenges—from strategy and risk management to tax, audit, and advisory—through innovative solutions built on integrity and insight.

KPMG professionals collaborating

Our Services

We offer a broad range of strategic and operational services across all business functions.

Serving Key Industries

From healthcare to technology, we provide tailored expertise for diverse sectors.

Why Choose KPMG?

  • Global reach with local insight across over 150 countries.
  • Integrity as our foundation—ethical standards guide every decision.
  • Innovative technologies integrated into traditional consulting models.
  • Dedicated teams delivering customized results for clients worldwide.
Team meeting in office

Join Our Team

We’re committed to diversity, equity, and inclusion. Apply today for roles that match your passion.

Get In Touch

Have questions about our services or opportunities? Reach out to learn more.

Connect With Us

© 2025 KPMG. All rights reserved. KPMG is a global network of professional services firms offering Audit, Tax, and Advisory services.
``` --- ## 🔧 Optional: Add Tailwind Config (for custom builds) Create a file called `tailwind.config.js`: ```js /** @type {import('tailwindcss').Config} */ module.exports = { darkMode: 'class', content: [ "./index.html", "./src/**/*.js", "./src/**/*.ts" ], theme: { extend: { colors: { primary: '#0f7a9c', accent: '#d82b5f' }, boxShadow: { 'custom': '0 12px 24px rgba(0,0,0,0.08)' } }, }, plugins: [], } ``` --- ## ✅ Next Steps 1. Host the site using: - GitHub Pages (Free, static) - Netlify (Easy deploy via Git) - Vercel (Fast deployment) - AWS S3 + CloudFront 2. Replace the placeholder image URLs with actual KPMG-branded assets or stock photos under their Creative Commons license. 3. Add real links to services, careers pages, etc., depending on your needs. 4. For multilingual support, add i18n routing later. Let me know if you'd like a React/Vue version, a dark mode toggle, SEO meta tags, or CMS integration!