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