Skip to content

Nitip documentation — HTML

Everything you need to go from the downloaded folder to a published site. Read in this order, or jump to what you need.

Guide What it covers
Editing the site Opening the site, editing text, links, images, adding and removing pages, projects, posts and roles
Making it look like your brand Colours, fonts, the Tailwind classes, rebuilding the stylesheet, the style guide
Forms Making the Contact and Careers forms deliver to you
Editing without touching HTML Your options when someone else needs to edit the site without touching HTML
Going live Pre-launch checklist, uploading, domains, what to do after launch
Troubleshooting and questions Errors, questions and answers
  1. Open index.html in your browser. That is the whole site — no install, no build.
  2. Open the folder in a code editor (VS Code is a good free one).
  3. Replace “Nitip”, the contact details and the demo domain across all files with your editor’s find and replace in files (Editing the site).
  4. Replace the photos in assets/images/ — same file name, same proportions, and every page picks them up.
  5. Replace the icons and the share image in the root folder (favicon.ico, icon.svg, apple-icon.png, opengraph-image.png).
  6. Put your form endpoint in assets/js/config.js (Forms).
  7. Upload the folder to your host (Going live).
  • One HTML file per page. about.html is /about.html; each project, service, post and role has its own file in projects/, services/, blog/ and careers/.
  • One stylesheet. assets/css/style.css, built from src/css/style.css with Tailwind CSS. You only rebuild it when you use a class that isn’t in the site yet or change the theme (Making it look like your brand).
  • One script. assets/js/main.js runs the menu, cursor, sliders, accordions, Load More, forms and motion. You don’t need to edit it. Your settings go in assets/js/config.js.
  • No framework, no dependencies at runtime. The pages work from any static host, and even straight from disk.