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