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