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