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