<svg viewBox="0 0 200 200" width="200" height="200">
  <title>Avatar</title>
  <defs>
    <circle id="circle" cx="100" cy="100" r="100" vector-effect="non-scaling-stroke" />
    <clipPath id="circle-clip">
      <use xlink:href="#circle" />
    </clipPath>
  </defs>
  <g clip-path="url(#circle-clip)">
    <image xlink:href="https://www.w3cplus.com/sites/default/files/blogs/2020/2004/cat-toes-paw-number-paws-tiger-tabby.jpg" width="100%" height="100%" preserveAspectRatio="xMidYMid slice" />
  </g>
</svg>
@import url("https://fonts.googleapis.com/css?family=Gochi+Hand");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #291642;
  font-family: "Gochi Hand", sans-serif;
  font-size: 130%;
  letter-spacing: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.