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