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