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