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