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