dominiquerichardson.com on safari mobile
if you go to that site on your mac on safari or chrome right click is disabled
on chrome ios there is no touch call out
on safari ios you can save
using
<style>
.noselect {
	-webkit-touch-callout: none; /* Safari Touch */
	-webkit-user-select: none;	 /* Webkit */
	-moz-user-select: none;			/* Firefox */
	-ms-user-select: none;			 /* Edge*/
	 user-select: none;			 /* Future-proof*/
}
.nodrag {
	 -webkit-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	 user-drag: none;
}
</style>