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