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