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