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