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