Site QC Checklist:

https://docs.google.com/spreadsheets/d/1khiCi8k9LYIRTd4y6Z-U5PpZIH7DkTSLkSVnz5TwzZQ/edit#gid=1386834576

Accessibility checklist (created by webflow)

https://webflow.com/accessibility/checklist

 

Here's a trick for checking links

Put this in the console in developer tools (requires jQuery)

$('body').find('a').each(function(){ console.log($(this).attr('href'));$(this).text($(this).text()+'('+$(this).attr('href')+')'); });

This will print out every url in the console and also change the text of every link to include the url.

 

Trick for double checking alt text

$('body').find('img').each(function(){
var alt = $(this).attr('alt');
if(alt){
console.log(alt);
} else {
console.log("Alt missing for "+$(this).attr('src'));

$(this).css('border','5px solid red');
}
$(this).before('<p>'+$(this).attr('alt')+'</p>');});