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