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