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