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