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