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