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