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