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