본문 바로가기
Web/CSS

[CSS] TEXT설정 - 6️⃣ 폰트/글꼴 설정, 웹폰트 적용, 구글 폰트 적용하기

by coding-choonsik 2023. 3. 30.
728x90
반응형
SMALL

1. font-size

  • 텍스트 크기를 설정
  • 설정 단위 : px, %, em, rem

 

em 단위
1em : 16px(PC), 12px(MOBILE)

 


2. font-family

  • 텍스트의 글꼴을 설정

 

 

3. font-weight

  • 텍스트의 굵기를 설정
  • 기본 굵기: 400 (범위 100 ~ 900)

 


✔ 글꼴을 선택하는 방법

  • 누구나 설치되어 있는 기본 글꼴을 사용
  • 이미지로 처리
  • 클라이언트에 글꼴을 다운로드 시켜 사용
  • 웹 폰트를 사용

 


📌  구글 폰트

  • head 태그 안에 사용

https://fonts.google.com/


 

📌 눈누

  • style 태그 안에 사용

https://noonnu.cc/

 

눈누

상업용 무료한글폰트 사이트

noonnu.cc


<!DOCTYPE html>
<html lang="en">
<head>
    <title>css 텍스트</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&display=swap" rel="stylesheet">
    <style>
        p {font-size: 24px;}
        .sunflower1 {font-family: 'Sunflower', sans-serif; font-weight: 300;}
        .sunflower2 {font-family: 'Sunflower', sans-serif; font-weight: 500;}
        .sunflower3 {font-family: 'Sunflower', sans-serif; font-weight: 700;}

        @font-face {
            font-family: 'CookieRun-Regular';
            src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/CookieRun-Regular.woff') format('woff');
            font-weight: 700;
            font-style: normal;
        }
        .cookierun { font-family: 'CookieRun-Regular'; font-weight: 700;}
    </style>
</head>

<body>
    <h2>css 텍스트</h2>
    <p>국제연합의 모든 사람들은 그 헌장에서 기본적 인권, 인간의 존엄과 가치, 그리고 남녀의 동등한 권리에 대한 신념을</p>
    <p class="sunflower1">국제연합의 모든 사람들은 그 헌장에서 기본적 인권, 인간의 존엄과 가치, 그리고 남녀의 동등한 권리에 대한 신념을</p>
    <p class="sunflower2">국제연합의 모든 사람들은 그 헌장에서 기본적 인권, 인간의 존엄과 가치, 그리고 남녀의 동등한 권리에 대한 신념을</p>
    <p class="sunflower3">국제연합의 모든 사람들은 그 헌장에서 기본적 인권, 인간의 존엄과 가치, 그리고 남녀의 동등한 권리에 대한 신념을</p>
    <p class="cookierun">국제연합의 모든 사람들은 그 헌장에서 기본적 인권, 인간의 존엄과 가치, 그리고 남녀의 동등한 권리에 대한 신념을</p>
</body>
</html>

 

 

 

📄 HTML 파일

 

1_css텍스트.html
0.00MB

 

 

728x90
반응형
LIST