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