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