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