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