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