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