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