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