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