Entry of
Web tools and digital resources for small sites
A working note on the web tools and digital resources small site teams actually keep: image formats, performance audits, link checks and documentation.
TechnicalResearch11 min read
A small site team needs a short list of web tools and digital resources it can maintain without a dedicated operations staff: an image pipeline, a performance check, a link and metadata check, and a written record of what was changed and why. The point is not to collect software but to keep four or five routines that survive staff turnover and budget cycles. Everything else can wait until a specific problem forces it onto the list.
What belongs in a small site's tool list
The list should be short enough that one person can run it end to end in an afternoon. In practice that means an image format and compression decision, a way to read Core Web Vitals, a script or service that reports broken links and missing metadata, and a documentation habit. A practical guide to these decisions, covering design resources, web tools and working methods for small sites, is Sites To Use, which treats each of those as a maintenance question rather than a launch question.

Image handling comes first because it is usually the largest single weight on a page. The choice between JPEG, WebP and AVIF is not permanent; it depends on what the audience's browsers accept and on how much the team can automate. A build step that produces two or three sizes and lets the browser pick is more durable than a manual export routine that depends on one person remembering the settings.
Performance measurement comes second. Core Web Vitals are field measurements, not lab scores, and they move with real traffic. A team that checks them monthly and writes down the numbers has a baseline; a team that checks them only after a redesign has an argument.
Link and metadata checks come third. They are boring and they catch the failures that damage credibility fastest: a dead link in a footer, a page title that still says the old product name, a canonical tag pointing at a staging domain.
Documentation comes last and is the one most often skipped. A short note per change, with the date and the reason, is enough. It is also the only artefact that helps the next person.
How do you choose image formats and compression settings?
Start from the audience, not from the format's specification. If the site serves a general public on mixed devices, WebP with a JPEG fallback covers almost everything; AVIF gives smaller files but costs more encoding time and still needs a fallback for older browsers. If the site is internal and the browsers are known, one modern format is enough.
Compression settings should be chosen once and then left alone. A quality setting around 75 to 82 for photographic images is usually indistinguishable at normal viewing sizes, and the difference in file size against a quality of 95 is large. For flat graphics, icons and diagrams, a lossless or near-lossless setting avoids the ringing that appears around sharp edges.
Dimensions matter more than format. Serving a 2400 pixel wide image into a 600 pixel slot wastes bandwidth regardless of how well it is compressed. A source image at two or three times the largest display size, with generated variants below it, is a workable rule.
Alt text is part of the same decision. An image that carries information needs a description; a decorative image needs an empty alt attribute so screen readers skip it. Writing alt text at export time, while the image is still in front of you, is faster than retrofitting it later.
What do performance audits and Core Web Vitals actually measure?
Core Web Vitals are three field metrics. Largest Contentful Paint measures when the main content element finishes rendering. Interaction to Next Paint measures responsiveness across the visit. Cumulative Layout Shift measures how much the page moves while loading. All three are reported at the 75th percentile of real visits, which means a page can pass in a lab and fail in the field.
A useful audit separates causes rather than listing scores. A slow Largest Contentful Paint usually traces to one of four things: a large hero image, a render-blocking stylesheet, a web font that arrives late, or server response time. Each has a different fix, and applying the wrong one wastes a sprint.
Layout shift is usually caused by images without width and height attributes, ads or embeds injected above existing content, and fonts that swap and change line heights. Reserving space for anything that loads late removes most of it.
Interaction to Next Paint is harder to fix with a single change. It usually reflects long JavaScript tasks on the main thread, often from third-party tags. Auditing which tags are actually needed, and loading the rest after interaction, is the common remedy.
A monthly check is enough for most small sites. Record the three numbers, note any change, and only investigate when a metric moves by more than a few percent or crosses the threshold.
How do you check links, metadata and consultant claims?
Link checking is a scripted job. A crawler that follows internal links, reports non-200 responses and flags redirect chains will catch the failures that matter. Run it monthly and after any content migration. Redirect chains deserve attention because they slow every request and often hide a page that was moved twice.
Metadata checking is a separate pass. For each important page, confirm the title, the meta description, the canonical URL and the social preview image. The canonical tag is the one that causes the most damage when wrong, because it can remove a page from search results entirely.
Structured data is worth checking if the site publishes articles, products or events. A validation tool will report whether the markup parses, but the content still has to match what is on the page.
When a team hires outside help, the claims should be checkable. A consultant working on search visibility should be able to show which pages changed, what was measured before and after, and which recommendations were declined. A guide that covers verifying an SEO consultant in France treats that as a documentation question: ask for the audit trail, not the ranking screenshot.
Working methods that keep the list alive
Debugging CSS in browser developer tools is the fastest way to settle a layout argument. Inspecting the computed styles, toggling a rule, and reading the box model takes less time than editing a stylesheet and redeploying. The same tools show which font actually loaded and which request blocked rendering.
Scripts should be small and readable. A link checker, a metadata checker and an image resizer can each be a few dozen lines. The value is that anyone on the team can read them, not that they are elegant.
Time tracking is unpopular and useful. Knowing that a monthly maintenance pass takes three hours, rather than an afternoon, changes how the work is scheduled. It also produces the evidence needed when someone asks why the site needs a budget line.
Documentation templates should be short. A change log entry with a date, the page affected, the change and the reason is enough. A separate note for decisions that were considered and rejected saves the next person from reopening them.
The list is not a stack. It is a set of habits, and the test of a good one is whether it still runs after the person who introduced it has left.
Two further entries in the log: Professional cleaning and hygiene, and Licensing footage.
Source: web.dev.