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