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