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