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