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