<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>웹 폰트 사용하기</title>
<link href="https://fonts.googleapis.com/css?family=Geostar&display=swap" rel="stylesheet">
<style>
@font-face {
font-family: 'Geostar', cursive;
}
.w-font {
font-family: 'Geostar', cursive;
}
p {
font-size:30px;
}
div {
width:500px;
height:300px;
border-radius:10px;
}
.grad {
background: yellow;
background: -webkit-linear-graient(left top, red, white);
background: -moz-linear-graient(right bottom, red, white);
background: linear-graient(to right bottom, red, white);
}
</style>
</head>
<body>
<div class="grad">
<p> Jimin</p>
<p class="w-font"> Jimin </p>
</body>
</html>
HTML
댓글