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