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