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