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