한글 웹 폰트 적용하기

No Image

Web Font 적용하기.

Example Html Code

<html>
  <head>
    <link rel="stylesheet"
          href="https://fonts.googleapis.com/css?family=Tangerine">
    <style>
      body {
        font-family: 'Tangerine', serif;
        font-size: 48px;
      }
    </style>
  </head>
  <body>
    <div>Making the Web Beautiful!</div>
  </body>
</html>

한국어 리스트 확인하기

배달의 민족 하나체

No Image

적용 후 모습

No Image

Reference

0%