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