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