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