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