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