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