xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<!-- Add the Font Awesome CDN link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha384-xrI7/7DzIVYxkVOX+0B2DnMeeTcCyz+bRU4cf32Z6wOObNb60gTMXTgbeT/5GTyB" crossorigin="anonymous">
</head>
<body>
<a href="#" onclick="goBack()"><i class="fas fa-arrow-left"></i> Go Back</a>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>