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