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