1.웹폰트 사용
1-1.CDN
CDN 링크를 사용하여 웹폰트를 사용
<style>
@import url('https://fonts.googleapis.com/css2?family=Tiny5&display=swap');
.tiny5-regular {
font-family: "Tiny5", sans-serif;
font-weight: 600;
font-style: normal;
font-size: 30;
}
</style>
<p class="tiny5-regular">hello world</p>
hello world
1-2.서버 폰트로딩
폰트 파일을 직접 서버에 업로드후 사용하는 방식
'FrontEnd > css' 카테고리의 다른 글
[CSS] 레이아웃 (0) | 2024.06.12 |
---|---|
[CSS] 트랜스폼 (0) | 2024.06.11 |
[CSS] 애니메이션 (0) | 2024.06.10 |