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