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