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