<span class="badge bg-pale-blue text-blue rounded py-1 mb-2">League of Legends</span>
<div class="row gy-6">
<div class="col-md-6 col-lg-4">
<a href="/apply/" class="card shadow-lg lift h-100">
<div class="card-body p-5 d-flex flex-row">
<div>
<img alt="LoL Boosting" class="avatar w-11 h-11 fs-20 me-4" src="<?php echo get_template_directory_uri(); ?>/assets/img/svg/lol.svg">
</div>
<div>
<span class="badge bg-pale-blue text-blue rounded py-1 mb-2">League of Legends</span>
<h4 class="mb-1">Бустер - Тренер</h4>
<p class="mb-0 text-body">Мастер или выше</p>
</div>
</div>
</a>
</div>
<div class="col-md-6 col-lg-4">
<a href="/apply/" class="card shadow-lg lift h-100">
<div class="card-body p-5 d-flex flex-row">
<div>
<img alt="Val Boosting" class="avatar w-11 h-11 fs-20 me-4" src="<?php echo get_template_directory_uri(); ?>/assets/img/svg/val.svg">
</div>
<div>
<span class="badge bg-pale-red text-red rounded py-1 mb-2">Valorant</span>
<h4 class="mb-1">Бустер - Тренер</h4>
<p class="mb-0 text-body">Радиант или выше</p>
</div>
</div>
</a>
</div>
<a id="Lol" href="/apply/" class="card shadow-lg lift h-100">
<script>document.getElementById('Lol').onclick = function () {
localStorage.setItem('game', "League of Legends");
}
</script>
<h1 id="game" ></h1>
<script>
let game = localStorage.getItem('game');
let job = document.getElementById('game')
window.onload = function() {
if(game == null){
job.innerHTML;
}
else {
job.innerHTML = game;
}
}
</script>