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