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