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