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