IT/css
web font
SHLEE™
2017. 5. 11. 09:16
구글폰트 : https://fonts.google.com/
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Tangerine">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<style>
#tangerine {
font-family: 'Tangerine', serif;
font-size: 48px;
}
#indieflower {
font-family: 'Indie Flower', cursive;
font-size: 48px;
}
</style>
</head>
<body>
<div id="tangerine">Making the Web Beautiful!</div>
<div id="indieflower">Making the Web Beautiful!</div>
</body>
</html>