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