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