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