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