Export the finished site as a static hand-off package with this exact structure.
HTML, CSS, and JS only: no build step, no framework runtime.
index.html full home page:
+ + + inlined
partials/header.html the shared , identical to the home page's
partials/footer.html the shared
main/.html one file per interior page. ONLY that page's ...
css/styles.css one shared stylesheet, loaded on every page
css/.css any page-specific styles (kept separate)
js/main.js one shared script, loaded on every page
js/.js any page-specific scripts
Rules:
1. Use semantic, class-based HTML. Refactor inline styles into reusable classes in
styles.css (design tokens as CSS variables at the top). No inline