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