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