-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubblesdark.html
109 lines (101 loc) · 2.55 KB
/
bubblesdark.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>For Everyone From ขนม</title>
<link href="Img/me33.jpg" rel="icon" type="image/x-icon" />
<style type="text/css">
@import url("https://fonts.googleapis.com/css2?family=Shantell+Sans&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
gap: 1.875rem;
background: #412525;
font-family: "Shantell Sans", cursive;
text-transform: capitalize;
}
.drop {
width: 300px;
height: 300px;
box-shadow: inset 20px 20px 20px rgb(55, 31, 31, 0.7),
20px 20px 20px #371f1f, 15px 15px 20px #331d1d90,
inset -15px -15px 20px #4f2d2d90;
border-radius: 50%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
font-size: 5rem;
color: #edbb91;
}
.drop:nth-child(1) {
border-radius: 45% 55% 53% 47% / 46% 53% 47% 54%;
}
.drop:nth-child(3) {
border-radius: 51% 49% 42% 58% / 55% 61% 39% 45%;
}
.drop::before {
content: "";
position: absolute;
background: #5a3333;
width: 35px;
height: 35px;
border-radius: 50%;
top: 60px;
left: 50px;
opacity: 0.9;
}
.drop::after {
content: "";
position: absolute;
background: #5a3333;
width: 20px;
height: 20px;
border-radius: 50%;
top: 45px;
left: 80px;
opacity: 0.9;
}
span {
font-size: 5rem;
color: #c46352;
}
</style>
</head>
<body>
<div class="drop">
<!-- <p>Html</p> -->
<p>Sir</p>
</div>
<span>+</span>
<div class="drop">
<!-- <p>Css</p> -->
<p>Us</p>
</div>
<span>=</span>
<div class="drop">
<p style="font-size: 3rem; text-align: center; margin: 8px 0">
Future <br />
Developers
</p>
</div>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
</body>
</html>