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