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