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