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