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