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