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