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