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