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