html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Indian FLag</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body{
margin:0;
}
* {
box-sizing: border-box;
}
body {
display: flex;
width: 100%;
height: 100vh;
justify-content: center;
align-items: center;
background: #eee;
}
div {
width: 400px;
height: 270px;
background: white;
border-top: 90px solid #ff8000;
border-bottom: 90px solid #008000;
position: relative;
}
div::before, div::after {
position: absolute;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run