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