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