1<body>
2<div class="A"></div>
3<div class ="B"></div>
4<div class ="C"></div>
5<div class ="D"></div>
6<style>
7 .A {
8 height: 100px;
9 width: 50px;
10 background: #F9E492;
11 border-radius:0 90px 90px 0;
12 transform: rotate(-90deg);
13 position:absolute;
14 top:75;
15 left:125;
16 }
17 .B {
18 height: 100px;
19 width: 50px;
20 background: #4F77FF;
21 border-radius:0 90px 90px 0;
22 transform: rotate(-0deg);
23 position:relative;
24 top:-50;
25 left:50;
26 }
27 .C {
28 height: 100px;
29 width: 50px;
30 background: #F9E492;
31 border-radius:0 90px 90px 0;
32 transform: rotate(90deg);
33 position:relative;
34 top:25;
35 left:25;
36 }
37 .D {
38 height: 100px;
39 width: 50px;
40 background: #4F77FF;
41 border-radius:0 90px 90px 0;
42 transform: rotate(180deg);
43 position:absolute;
44 top:150;
45 left:150;
46 }
47 body{
48 background-color:#191919;
49 display: flex;
50 justify-content:center;
51 align-items:center;
52 }
53</style>
54</body>
1<body>
2<div class="A">
3 <div class="B">
4 <div class="C"></div>
5 </div>
6 </div>
7
8
9<style>
10 .A {
11 width: 150;
12 height: 150;
13 background: #4F77FF;
14 border-radius:105px;
15 position: absolute;
16 top:50;
17 left:125;
18 display:flex;
19 justify-content:center;
20 align-items:center;
21
22 ;
23
24 }
25 .B{
26 width:75px;
27 height:125px;
28 background-color:#F9E492;
29 position:relative;
30 top:62;
31 left:-38;
32
33
34
35
36 }
37 .C{
38 width:75px;
39 height:75px;
40 background-color:#9AD5FF;
41 border-radius: 0 0 0 90px ;
42
43
44 }
45 body{
46 background-color:#19191A;
47 display:flex;
48 justify-content:center;
49 align-items:center;
50
51 }
52</style>
53</body>
1<body>
2<div class="A"></div>
3<div class="B"></div>
4<div class="C"></div>
5<div class="D"></div>
6<style>
7 body{
8 margin:0px;
9 }
10 .A{
11 margin-left: 0px;
12 background:#F7EC7D;
13 height:50;
14 }
15 .B{
16 background:#E38F66;
17 height:50;
18 }
19 .C{
20 background:#AA445F;
21 height:100;
22 }
23 .D{
24 background:#62306D;
25 height:100;
26 }
27</style>
28</body>