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