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