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