<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="dot-wrapper">
<div class="dot">1</div>
<div class="dot">2</div>
<div class="dot">3</div>
<div class="dot">4</div>
<div class="dot">5</div>
<div class="dot">6</div>
<div class="dot">7</div>
</div>
</body>
</html>
body {
margin: 0;
}
.dot-wrapper {
text-align: center;
padding: 50px 0;
background-color: #ddd;
}
.dot {
width: 100px;
height: 100px;
line-height: 100px;
background-color: orangered;
color: white;
font-size: 3rem;
text-align: center;
display: inline-block;
border-radius: 50%;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.