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