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