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