Sice,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
</head>
<body>
<main>
<a id='copy' href='/category.php'>Этот текст нужно скопировать в буфер обмена</a>
<script>
const copy = document.querySelector('#copy');
copy.addEventListener('click',
function(event) {
event.preventDefault();
const text = document.querySelector('#copy');
navigator.clipboard.writeText(text.textContent);
});
</script>
</main>
</body>
</html>