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