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