level 2
飞毛腿苹果
楼主

<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>放大镜</title>
<style>
.box1{
width: 45px;
height: 45px;
border-radius: 45px;
border: 5px solid black;
}
.box2{
width: 60px;
height: 14px;
border-radius: 20px;
border: 5px solid black;
transform: rotate(42deg);
margin-left: 35px;
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
</body>
</html>