Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

웹 페이지에서 Google 글꼴을 사용하는 방법은 무엇입니까?


웹페이지에서 Google 글꼴을 사용하려면 코드는 다음과 같습니다. -

예시

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap" rel="stylesheet"/>
<style>
   body {
      font-family: "Permanent Marker", cursive;
      font-size: 22px;
   }
</style>
</head>
<body>
<h1>Google fonts example</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Debitis non a quos repudiandae doloribus cumque! Ex rem rerum aut maiores.
</p>
<h2>1 2 3 4 5 6 7 8 9 10</h2>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

웹 페이지에서 Google 글꼴을 사용하는 방법은 무엇입니까?