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