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