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