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