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