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