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