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