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