-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemoji.html
41 lines (37 loc) · 828 Bytes
/
emoji.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
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<style>
.face {
background-color: yellow;
height: 200;
width: 200;
border-radius: 50%;
margin: 10;
float: left;
}
.eyes {
background-color: black;
height: 20;
width: 20;
border-radius: 50%;
margin: 60;
}
.smile {
height: 20;
width: 60;
background-color: red;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
margin-left: 70;
position: fixed;
}
</style>
</head>
<body>
<div class="face">
<div class="eyes">
<div class="eyes"></div>
</div>
<div class="smile"></div>
</div>
</body>