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