Use on the webTotal Use [ 6589 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0cc0f45fc2cb29e079728efdcf30b7fd?family=Yeon+Sung+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/0cc0f45fc2cb29e079728efdcf30b7fd?family=Yeon+Sung+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Yeon Sung Regular";
src: url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.eot");
src: url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0cc0f45fc2cb29e079728efdcf30b7fd.svg#Yeon Sung Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Yeon Sung Regular";