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