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