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