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