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