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