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