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