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