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