<!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>Document</title>
<style>
body{
background-color: #666;
}
p{
text-align: center;
font-size: 100px;
margin-top: 100px;
font-weight: 700;
color: #666;
}
.ao{
text-shadow: -1px -1px 1px red,1px 1px 1px white;
}
.tu{
text-shadow: 1px 1px 1px green,-1px -1px 1px yellow;
}
</style>
</head>
<body>
<p class="ao">黄浩成</p>
<p class="tu">黄浩成</p>
</body>
</html>