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