A fast, modern, single-page marketing site for The Lawnsmith (Milan, MI lawn care & landscaping). Built with plain HTML, CSS and a touch of vanilla JavaScript — no build step, no dependencies. It works opened directly in a browser and deploys to Vercel, Netlify or GitHub Pages in minutes.
index.html— all page content & structurestyles.css— design system, layout, animations, responsive rulesscript.js— sticky nav, mobile menu, scroll reveals, animated stats, form validationassets/— drop your photos and hero video here
Just open index.html, or run a tiny server:
npx serve . # then open the printed URL
# or
python3 -m http.server 8000- Hero video — record/export a short clip (a mow, edging, a clean lawn) ~8–15s, muted, 1080p, H.264
.mp4, ideally < 6 MB. Save it asassets/hero.mp4and a still frame asassets/hero-poster.jpg. Until you do, an animated green gradient shows automatically. - Your photos — replace the placeholder Unsplash images in
styles.css(searchunsplash.com) under.about__photo--*and.gallery__item[data-shot=...]with your own before/after shots. Best results: your real jobs. - Phone & email — search
(000) 000-0000,+10000000000, andhello@thelawnsmithmi.cominindex.htmland swap in real contact info. - Service area — adjust the town tags in the “Service Area” section to match where you actually work.
- Reviews — the six reviews shown are the real customer reviews you provided. Add/edit in the
#reviewssection.
Right now the form validates and shows a friendly confirmation, but doesn’t send anywhere. Two easy options:
- Formspree (no backend): set
<form action="https://formspree.io/f/yourID" method="POST">and remove thee.preventDefault()inscript.js, or keep JS and POST viafetch. - Netlify Forms: add
netlifyto the<form>tag and deploy on Netlify.
- Vercel:
npx vercel(or import the repo at vercel.com) — it's a static site, no config needed. - Netlify: drag the folder onto app.netlify.com, or connect the repo.
- GitHub Pages: repo Settings → Pages → deploy from branch root.
- Fully responsive (mobile floating "Free Quote" button included).
- Respects
prefers-reduced-motion. - Placeholder images are loaded from Unsplash for the demo; replace them with your own and the site works fully offline.