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