JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Сменные изображения</title>
<style type="text/css">
#gallery{width:600px; height:380px; border:1px solid black;background:url(http://htmlbook.ru/sites/default/files/river.jpg); margin:0 auto;}
.next{position:relative;top:90%; text-align:center;}
.next a{display:inline-block; width:10px;height:10px; margin-right:10px; border:2px solid white; border-radius:50px;background:#1D1D1D;}
.next a:hover{background:#F30; box-shadow:0 0 10px #F9F9F9;0 0 10px #FFB3B0;}
</style>

</head>

<body>
<div id="gallery">
<div class="next">
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
</div>
</div>
</body>
</html>