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