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