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