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