字体
2017-04-18 本文已影响0人
洛洛kkkkkk
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>字体</title>
<style type="text/css">
body{
background-color: black;
}
@font-face {
font-family:"行楷","SnellRoundhand";
src: url("Xingkai.ttc","SnellRoundhand.ttc");
}
div{
font-family: Snell Roundhand;
font-size: 50px;
margin: 200px 200px;
color: white;
text-shadow: 0 0 5px blue,
0 0 10px blue,
0 0 15px blue,
0 0 20px #228DFF,
0 0 35px #228DFF,
0 0 40px #228DFF,
0 0 50px #228DFF,
0 0 75px #228DFF;
}
</style>
</head>
<body>
<div>k k k<br />B L U E<br /> 6 6 6</div>
</body>
</html>