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