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