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