비전공자 개발일기

Cool Text Style 본문

HTML _CSS

Cool Text Style

HiroDaegu 2023. 2. 16. 00:24
728x90
SMALL

<!DOCTYPE html>
<html lang="ko">

<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>COOL TEXT STYLE</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <span>Code</span>
</body>

</html>
body {
    background-color: #DC143C;
}

span {
    font-size: 7rem;
    letter-spacing: .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 7px 7px #FFA500, 18px 18px #000;
}
728x90
LIST

'HTML _CSS' 카테고리의 다른 글

Toolbar Motion  (0) 2023.02.19
Landscape Design  (0) 2023.02.18
Moving Car Animation  (0) 2023.02.15
Camera Icon  (0) 2023.02.14
Simple 404 page  (0) 2023.02.13