css3-anime/tx/dllcn/index.html

32 lines
721 B
HTML

<!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>前端特效字体</title>
<link rel="stylesheet" href="./index.css">
</head>
<style>
.dllcn-font {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
<body>
<div class="dllcn-font">
<div class="first">DLLCN</div>
<div class="second">
<div class="seconds">DLLCN</div>
</div>
<div class="three">
<div class="threes">DLLCN</div>
</div>
</div>
</body>
</html>