html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="center_div">
<div class="main_div">
<p>my name is sabbir
</p>
</div>
</div>
<p> <i>my name is sabbir<i></p>
</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
.center_div{
height:100vh;
width:100vw;
background-color:blue;
display:flex;
justify-content:center ;
align-items:center;
}
.main_div{
height:60vh;
width:60vw;
background-color:red;
background-size:100% 100%;
box-shadow:0 10px 20px 30px #fff;
}
.main_div p{
background-color
height:100%;
width:100%;
color:yellow;
display:flex;
justify-content:senter;
align-items:center ;
border-size:20px;
left:4px;
top:4px;
right:5px;
bottom:6px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run