<div class="container">
  <div class="box">
    <div class="shadow"></div>
    <div class="content">
      <div class="percent" data-text="Html" style="--num:88;">
        <div class="dot"></div>
        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70"></circle>
        </svg>
      </div>
      <div class="number">
        <h2>88<span>%</span></h2>
      </div>
    </div>
  </div>

  <div class="box">
    <div class="shadow"></div>
    <div class="content">
      <div class="percent" data-text="CSS" style="--num:95;">
        <div class="dot"></div>
        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70"></circle>
        </svg>
      </div>
      <div class="number">
        <h2>95<span>%</span></h2>
      </div>
    </div>
  </div>
  <div class="box">
    <div class="shadow"></div>
    <div class="content">
      <div class="percent" data-text="JS" style="--num:80;">
        <div class="dot"></div>
        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70"></circle>
        </svg>
      </div>
      <div class="number">
        <h2>80<span>%</span></h2>
      </div>
    </div>
  </div>
  </div>

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas;
}
body 
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: #cfd1e1;
}
.container 
{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px 100px;
  flex-wrap: wrap;
}
.container .box 
{
  position: relative;
  width: 240px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .box::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(#fff,#fff,#e3e3e3);
  filter: blur(1px);
  z-index: 1;
}
.container .box::after 
{
  content: '';
  position: absolute;
  top: 1px;
  right: -1px;
  width: 20px;
  height: 100%;
  background: #9d9d9d;
  filter: blur(1px);
  z-index: 1;
}
.container .box .shadow 
{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #eee;
}
.container .box .shadow::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  width: 100%;
  height: 200%;
  background: linear-gradient(rgba(0,0,0,0.075),transparent);
  transform: skewX(45deg);
}
.container .box .shadow::after 
{
  content: '';
  position: absolute;
  bottom: -200%;
  left: calc(100% + 15px);
  width: 100%;
  height: 200%;
  background: linear-gradient(rgba(0,0,0,0.075),transparent);
  transform: skewX(45deg);
}
.container .box .content 
{
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(#dbdae1,#a3aaba);
  box-shadow: 5px 5px 5px rgba(0,0,0,0.1),
  15px 15px 15px rgba(0,0,0,0.1),
  20px 20px 20px rgba(0,0,0,0.1),
  50px 50px 50px rgba(0,0,0,0.1),
  inset 3px 3px 2px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container .box .content .percent 
{
  position: relative;
  width: 150px;
  height: 150px;
}
.container .box .content .percent::before 
{
  content: attr(data-text);
  position: absolute;
  inset: 20px;
  background: #00a6bc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.container .box .content .percent svg 
{
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(270deg);
}
.container .box .content .percent svg circle 
{
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 3;
  stroke: rgba(0,0,0,0.05);
  transform: translate(5px,5px);
}
.container .box .content .percent svg circle:nth-child(2)
{
  stroke: #00a6bc;
  stroke-dasharray: 440;
  stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
  opacity: 0;
  animation: fadeIn 1s linear forwards;
  animation-delay: 2.5s;
}
@keyframes fadeIn 
{
  0%
  {
    opacity: 0;
  }
  100%
  {
    opacity: 1;
  }
}
.container .box .content .percent .dot 
{
  position: absolute;
  inset: 5px;
  z-index: 10;
  animation: animateDot 2s linear forwards;
}
@keyframes animateDot 
{
  0% 
  {
    transform: rotate(0deg);
  }
  100% 
  {
    transform: rotate(calc(3.6deg * var(--num)));
    /* 360 / 100 = 3.6deg */
  }
}
.container .box .content .percent .dot::before 
{
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #00a6bc;
  border-radius: 50%;
}
.container .box .content .number 
{
  position: relative;
  inset: 0;
  opacity: 0;
  animation: fadeIn 1s linear forwards;
  animation-delay: 2.5s;
}
.container .box .content .number h2 
{
  font-size: 2.5em;
  color: #00a6bc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .box .content .number h2 span 
{
  font-weight: 300;
  font-size: 0.5em;
  margin-left: 5px;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.