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