Use on the webTotal Use [ 4674 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1c9919bced7289457141c07e899961ad?family=PyeongChang2018+Light" 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/1c9919bced7289457141c07e899961ad?family=PyeongChang2018+Light);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PyeongChang2018 Light";
src: url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.eot");
src: url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1c9919bced7289457141c07e899961ad.svg#PyeongChang2018 Light")format("svg");
}
2CSS rules to specify fonts
font-family: "PyeongChang2018 Light";