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