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