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