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