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