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