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