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