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