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