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