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