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