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