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