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