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