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