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