본문 바로가기

IT/css

web font

구글폰트 : https://fonts.google.com/


<!doctype html>

<html>

  <head>

    <link rel="stylesheet" type="text/css"

          href="https://fonts.googleapis.com/css?family=Tangerine">

<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">

    <style>

      #tangerine {

        font-family: 'Tangerine', serif;

        font-size: 48px;

      }

 

 #indieflower {

        font-family: 'Indie Flower', cursive;

        font-size: 48px;

      }

 

    </style>

  </head>

  <body>

    <div id="tangerine">Making the Web Beautiful!</div>

    <div id="indieflower">Making the Web Beautiful!</div>

  </body>

</html>

'IT > css' 카테고리의 다른 글

html 공백 < > & " 표현  (0) 2017.07.26
정규식  (0) 2017.07.11
CSS 아이콘 폰트  (0) 2017.05.09