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