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