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