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