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