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