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