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