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