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