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