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