-
Notifications
You must be signed in to change notification settings - Fork 0
/
embosed.php
76 lines (67 loc) · 1.54 KB
/
embosed.php
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
<style>
body {
margin: 0;
padding: 0;
font-family: serif;
justify-content: center;
align-items: center;
display: flex;
background-color: #65E73C;
}
div {
content: '';
font-size: 3em;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h2 {
color: #65E73C;
text-shadow: -2px 2px 4px
rgba(0, 0, 0, 0.5),
2px -2px 0
rgba(255, 255, 255, 0.9);
}
</style>
Final Code: It is the combination of the above two code sections.
filter_none
edit
play_arrow
brightness_4
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Embossed Text Effect</title>
<style>
body {
margin: 0;
padding: 0;
font-family: serif;
justify-content: center;
align-items: center;
display: flex;
background-color: #65E73C;
}
div {
content: '';
font-size: 3em;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h2 {
color: #65E73C;
text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5),
2px -2px 0 rgba(255, 255, 255, 0.9);
}
</style>
</head>
<body>
<div>
<h2>GeeksforGeeks</h2>
</div>
</body>
</html>