목차

HOW TO Google Fonts

  • description : How to - Google Fonts
  • author : 오션
  • email : shlim@repia.com
  • lastupdate : 2021-04-09


Ref

How to - Google Fonts

예제

<!DOCTYPE html>
<html>
<head>
    <title>Google Fonts</title>
    <link href="https://fonts.googleapis.com/css?family=Sofia" rel="stylesheet">
    <style>
        body {
            font-family: 'Sofia';
            font-size: 22px;
        }
    </style>
</head>
<body>
    <h1>Sofia</h1>
    <p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
    <p>12343567890</p>
    <p>ABCDEFGHIJKLMNOPQRSTUVWXYZ</p>
    <p>abcdefghijklmnopqrstuvwxyz</p>
</body>
</html>


Result



Ref