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