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