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