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