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