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