JSFiddle - React, Tailwind, and code Playground

HTML

<div id="content">
  <p>uikit - UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces. - cdnjs.com - The best FOSS CDN for web related.</p>
</div>

JavaScript

var left_url = "https://google.com";
 var right_url = "https://youtube.com";
$('html').keydown(function(e){
        if (e.keyCode == 37) {
            alert('Пириход Гугл ком');
						$(location).attr('href',left_url);
        }
        if (e.keyCode == 39) {
            alert('Пириход Утуб ком');
            $(location).attr('href',right_url);
        }
});