<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>Transform</title>
<href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="bigcircle"></div>
<div class="smallcircle"></div>
</div>
</body>
</html>
.container{
margin: 0 auto;
max-width:1100px
}
.bigcircle{
height:100px;
width:100px;
background-color:#A12568;
border-radius:50%;
}
.smallcircle{
height:50px;
width:50px;
background-color:#FEC260;
border-radius:50%;
transform: translate(25px, -75px)
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.