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