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