Skip to content

Commit 6612e9a

Browse files
authored
added missing slice attempt2 code
1 parent c60c292 commit 6612e9a

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

battle#1/#6-Missing-Slice.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
# Target #6- Missing Slice
22

3-
### Output & Target:
3+
### Output & Target (Attempt-2):
4+
5+
<img src="https://user-images.githubusercontent.com/93486013/180930439-48e5bc69-a486-49c9-8e0f-9c33cb8cc88b.PNG" alt="target6- missing slice" width="600">
6+
7+
### Code:
8+
9+
```HTML
10+
<div id="circle"></div>
11+
<style>
12+
body{
13+
background: #E3516E;
14+
}
15+
#circle{
16+
background: conic-gradient(#FADE8B 90deg, #E3516E 90deg 180deg, #F7F3D7 180deg 270deg, #51B5A9 270deg);
17+
position: absolute;
18+
top: 50px; left: 100px;
19+
width: 200px; height: 200px;
20+
border-radius: 50%;
21+
}
22+
</style>
23+
```
24+
25+
26+
### Output & Target (Attempt-1):
427

528
<img src="https://user-images.githubusercontent.com/93486013/180926061-dc8d5093-19d5-4884-8095-70df46daef0a.PNG" alt="target6- missing slice" width="600">
629

0 commit comments

Comments
 (0)