Web & Frontend
13 terms · everything you'll trip over in this area.
- HTML, CSS, JavaScript #
- The three core building blocks of every web page. HTML is the structure ("a heading goes here"), CSS is the look ("the heading is dark blue, big, in this font"), JavaScript is the behaviour ("when this button is clicked, do that"). Every site you've ever visited uses all three.
- Frontend #
- Everything you see and click on a website or app. The frontend developer is the one who makes the visual side feel polished, fast, and on-brand.
- Backend #
- The bit you don't see. Servers, databases, API endpoints, business rules. The backend developer makes sure your data is saved correctly, your payments go through, and your customer's booking actually creates a booking.
- Full-stack #
- A developer who works across both frontend and backend. Most great solo developers are full-stack, but for a complex build, separate frontend and backend specialists usually produce better work.
- Responsive design #
- The site looks and works just as well on a phone as it does on a desktop. In 2026 this is non-negotiable. If a developer doesn't mention it in their quote, it's probably not their strength.
- Static site #
- A website built from pre-generated HTML files served straight from a CDN. Fast, cheap to host, perfect for marketing sites and blogs that don't change every minute. Tools like Astro, Hugo, and Eleventy fall in this category.
- CMS (Content Management System) #
- The tool you (the business owner) use to edit your site without calling the developer back every time. WordPress is the most common; Webflow, Sanity, Contentful, and Storyblok are the modern alternatives.
- Headless CMS #
- A CMS that just stores content and pipes it to the website via an API. The website itself is built separately. More flexible than traditional WordPress but more developer effort upfront.
- SPA (Single-Page Application) #
- A site that loads once and rewrites the page as you click around, instead of fetching a fresh page each time. Smoother feel; sometimes worse for SEO. React, Vue, and Svelte are common SPA frameworks.
- SSR / SSG #
- Server-Side Rendering vs Static Site Generation. Two ways of pre-building HTML so search engines and slow devices see content fast. Next.js, Nuxt, Astro, and SvelteKit all do both, in different shapes.
- React, Vue, Svelte #
- The three most common JavaScript frameworks for building modern interactive websites. Picking one is a developer call; the difference rarely matters to the business.
- Next.js, Nuxt, SvelteKit, Astro #
- Frameworks built on top of React / Vue / Svelte that handle the boring parts (routing, image optimisation, hosting). Most modern Australian web builds use one of these in 2026.
- WCAG 2.1 AA #
- The accessibility standard most Australian businesses target. It covers things like colour contrast, keyboard navigation, alt text, and screen-reader support. Not having it can be a legal risk under the Disability Discrimination Act.