-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlove.html
55 lines (49 loc) · 1008 Bytes
/
love.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Love Shape</title>
<style>
.heart {
width: 100px;
height: 100px;
background-color: red;
position: relative;
transform: rotate(320.5deg);
margin: 100px auto;
}
.heart:before,
.heart:after {
content: '';
position: absolute;
width: 100px;
height: 100px;
background-color: red;
}
.heart:before {
border-radius: 100px 100px 0 0;
top: -50px;
left: 0;
}
.heart:after {
border-radius: 100px 100px 100px 0;
top: 0;
left: 50px;
}
.text {
position: absolute;
top: 40%;
left: 40%;
transform: translate(-50%, -50%);
font-size: 10px;
color: white;
font-weight: Bold;
}
</style>
</head>
<body>
<h1 style="background-color:blue;color:white;text-align:center;">Eyasin Ali</h1>
<div class="heart">
<div class="text">Eyasin</div>
</div>
</body>
</html>