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