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