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