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