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