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