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