html
html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
html,
body {
margin: 0;
height: 100%;
width: 100%;
background-color: black;
}
#myemo {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
font-size: 9rem;
}
</style>
</head>
<body>
<div id="myemo">🌏</div>
</body>
</html>
css
css
1
js
js
1
BROWSER
Console
Run