Web Designer SEO
I used to think SEO could be layered on after design — but crawlability, structure and speed need to be baked in from the first wireframe.
Start here
- Plan your navigation hierarchy before writing a single line of HTML or CSS.
- Use one descriptive H1 per page that matches the page’s core topic.
- Compress every image and write meaningful alt text that describes the content.
- Ensure every page receives at least one internal link from another page on the site.
- Test mobile responsiveness on real devices before launch, not just in the browser inspector.
Plain-English take
Web designer SEO means building a site that a search engine can read as easily as a human. Think of it as a house with clear signage and wide corridors. A visitor can find the kitchen because the door is labelled. A crawler can find your ‘Services’ page because the navigation link is in the HTML and the heading says ‘Services’, not ‘What We Do’.
A concrete example: I once worked with a portfolio site that loaded all project thumbnails via JavaScript tabs. The design was clean, but Googlebot saw only one page. I had to refactor the site so each project had its own URL with a unique heading and description. Search traffic to those projects went from zero to 120 visits a month after indexation. The design stayed similar; the underlying structure changed.
The core elements are straightforward. A logical site hierarchy with clear categories. Descriptive title tags and meta descriptions that summarise the page. One H1 that states the page’s purpose, followed by H2s for subsections. Images with alt text that describes what the image shows, not just a keyword. Internal links that connect related pages and avoid orphan pages that no one can reach.
There is a tension here with pure aesthetics. A designer might prefer a full-screen video hero that slows load time, or a complex navigation menu that uses CSS to hide links. My rule: if a design decision blocks crawlability or significantly harms page speed, it needs a technical workaround (lazy loading, preconnect, fallback HTML) or it gets cut. Good web design SEO is not about making everything ugly; it’s about making trade-offs that preserve discoverability.
This is not just theory for large sites. A five-page brochure site for a local plumber still benefits from a clear H1 and efficient image compression. The same principles scale up. If you design with these constraints from the start, you save hours of retrofitting later.
When it actually matters
Web designer SEO matters most when you are building something new, redesigning something old, or wondering why your existing pages are not being indexed.
New sites: Launching from scratch is the cheapest time to get it right. I recently helped a [web design agency](/web-design-agency/) plan a 50-page site for a chain of dental clinics. We sketched the sitemap on a whiteboard before anyone touched a mockup. That upfront work meant every page had a logical parent, a unique title, and a plan for internal links. The site was fully indexed within two weeks of launch.
Redesigns: This is where I have seen the most damage. A client once migrated a 200-page site to a new CMS without preserving URLs or redirects. Organic traffic dropped by 60% in one week. If you are redesigning, audit every existing page’s URL, title, and content before you build. Map old URLs to new ones and set up 301 redirects. This is unglamorous work, but it protects months of ranking effort. For smaller redesigns, such as updating a [small business SEO](/small-business-seo/) site’s theme, check that headings and schema remain intact.
Indexation gaps: If you have published strong content but pages are not appearing in search results, the design layer is often the culprit. JavaScript-heavy frameworks, lack of HTML headings, or images loaded as background images (no alt text) can block crawlers. Use the URL Inspection tool in Google Search Console on a handful of pages. If Google says ‘Crawled but not indexed’, the design may be confusing the parser.
Mobile usability: This is no longer optional. Over 60% of searches happen on mobile. If your design works on desktop but breaks on a 375px screen, you will bleed ranking. Test on actual phones, not just resize the browser. A responsive layout that reflows content is the baseline. I recommend checking all touch targets (buttons, links) are at least 48px tall and images load within three seconds on a 4G connection.
Edge case: for a one-page site with fewer than five sections, the same rules apply but you can relax the URL structure since everything lives on one page. Use anchor links and clear H2 sections. For sites with hundreds of pages, invest in canonical tags, pagination markup, and structured data. Web designer SEO is not binary; the depth of implementation should match the scale of the site.
What I got wrong
I made several mistakes early on, and I still catch myself slipping back into bad habits.
Mistake 1: Treating SEO as an add-on. I used to build a site, then hand it to someone else to ‘do the SEO’. That led to messy HTML, duplicated headings, and pages that were buried four clicks deep in the navigation. Now I sit down with the designer or client and plan the information architecture before I write any code. The [SEO company](/seo-company/) I work with now insists on this step, and I agree with them.
Mistake 2: Writing vague headings. I reused ‘Our Services’ as an H1 across five different pages, thinking the URL would distinguish them. Google saw all five as covering the same topic. None ranked well. Each page should have a unique H1 that matches its specific content. ‘Dental Cleaning Services’ is better than ‘Services’. This applies to title tags too.
Mistake 3: Ignoring mobile usability during the design phase. I was obsessed with how the site looked on my 27-inch monitor. When I finally checked Google Search Console, 30% of pages had mobile usability errors: text too small, clickable elements too close together. I had to go back and adjust CSS and font sizes. It would have taken a tenth of the time if I had considered mobile from the start.
Mistake 4: Skipping image optimisation. I uploaded full-resolution JPEGs because they looked crisp. Page load time jumped to eight seconds on mobile. After compressing images and adding descriptive alt text (not just ‘image.jpg’), load time dropped to under two seconds and image search traffic increased by 15%. Alt text also helps accessibility, which is a ranking signal in its own right.
Mistake 5: Assuming that if it works in Chrome, it works everywhere. I built a site using modern CSS features that an older Android browser could not parse. The layout collapsed, and the main navigation became unclickable. For a [digital marketing services](/digital-marketing-services/) client, that meant lost leads. Now I test in at least three browsers and on a mid-range Android phone before launch.
These mistakes are common. The fix is not perfection but prioritisation. Start with site structure, then headings, then mobile. Everything else can be improved incrementally.
Next step
Quick answers
What is the single most important SEO element a web designer should control?
Site structure. Without a logical hierarchy defined by navigation and internal links, search engines cannot understand which pages are most important or how topics relate. A well-structured site also helps users find information, improving engagement and conversion rates.
Are single-page applications (SPAs) bad for SEO?
Not inherently, but they often load content via JavaScript that crawlers may not execute fully. If you use an SPA, implement server-side rendering or prerendering so the HTML includes the text content. Test with Google’s Rich Results Test to confirm the crawler sees the same content a user does.
Should I use a separate mobile site or responsive design?
Responsive design is Google’s recommended configuration and is easier to maintain. A separate mobile site (m.example.com) requires duplicate content management and redirect logic. Unless you have a strong technical reason, stick with responsive. It also consolidates ranking signals to one domain.
How many H1 tags should a page have?
One per page. That single H1 should clearly describe the page’s primary topic. Multiple H1s dilute the signal. Use H2 through H6 for subsections. This matches accessibility standards and helps search engines parse the content hierarchy.
Sources
Primary documentation is linked directly. Anything commercial is marked nofollow.
- Google Search Central — Primary source for Google’s guidance on crawlability, indexation, and mobile usability.
- SEO Starter Guide — Official intro on making pages discoverable; backs the advice on headings and structure.
- Creating helpful, reliable, people-first content — Supports the argument that content quality and design layout support each other.
- Moz Beginner’s Guide to SEO — Solid secondary reference for internal linking and technical basics used in the section on common mistakes.
- Ahrefs SEO guide — Practical explanations of image optimisation and mobile usability that informed the worked examples.
Notes from Callum Bennett.