반응형
<!doctype html>
<html lang="ko">
 <head>
  <meta charset="UTF-8">
  <title>웹 폰트 사용하기</title>
<link href="https://fonts.googleapis.com/css?family=Nanum+Myeongjo&display=swap" rel="stylesheet">
 <style>
 
   @font-face{
   				font-family: 'Nanum Myeongjo', serif;
			 }
  .w-font{
  			font-family:'Nanum Myeongjo', serif;/*웹 폰트 지정*/
		 }
		 
		p{
			font-size: 30px; /*글자 크기*/
		 }
 </style>
 </head>
 <body>
  <p>디폴트 폰트</p>
  <p class="w-font">적용 폰트</p>
 </body>
</html>
반응형

'2019~2020 > 웹 프로그래밍 (PHP)' 카테고리의 다른 글

박스 모델  (0) 2019.08.25
웹 폰트 적용하기  (0) 2019.08.25
Transform  (0) 2019.08.25
내부 스타일시트  (0) 2019.08.25
구구단 다 출력하기  (0) 2019.08.25

+ Recent posts