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