본문 바로가기

Programming/HTML

글씨체, 폰트, 구글 검색하여 변경

changeFont.html

<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<link
	href="https://fonts.googleapis.com/css?family=Satisfy&display=swap"
	rel="stylesheet">
  <!--구글 복사내용-->
<style>
p {
	font-family: 'Satisfy', cursive;
  <!--구글 복사내용-->
}
</style>
</head>
<body>
	<p>글씨체를 바꿔보는 예제중입니다.</p>
	<p>This is a page of practicing the modification of fonts.</p>
</body>
</html>