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