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