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