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